mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
10 lines
132 B
C++
10 lines
132 B
C++
|
#include <iostream>
|
||
|
#include <string>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::string str = "Try to compile";
|
||
|
std::cout << str << '\n';
|
||
|
return 0;
|
||
|
}
|