quakeforge/tools/qwaq/main.qc

12 lines
195 B
C++

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