fork download
  1. #include <iostream>
  2. #include <string>
  3. namespace anagram
  4. {
  5. class anagram
  6. {
  7. public:
  8. anagram(std::string s) {}
  9. };
  10. }
  11.  
  12. int main()
  13. {
  14. auto subject = anagram::anagram("diaper");
  15. }
Success #stdin #stdout 0s 3464KB
stdin
Standard input is empty
stdout
Standard output is empty