test_compiler.cpp 132 B

123456789
  1. #include <iostream>
  2. #include <string>
  3. int main()
  4. {
  5. std::string str = "Try to compile";
  6. std::cout << str << '\n';
  7. return 0;
  8. }