poco/cmake/test_compiler.cpp

10 lines
132 B
C++
Raw Normal View History

#include <iostream>
#include <string>
int main()
{
std::string str = "Try to compile";
std::cout << str << '\n';
return 0;
}