quakeforge/tools/qwaq/main.qc

7 lines
106 B
C++
Raw Normal View History

string hello = "hello";
string world = "world";
float () main =
{
print (hello + " " + world + "\n");
};