2024-07-09 14:46:46 +02:00

10 lines
132 B
C++

module uses_std;
import std;
int f()
{
std::string str = "hello!";
std::cout << "program: " << str << std::endl;
return 0;
}