mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
16 lines
260 B
C++
16 lines
260 B
C++
string hello = "hello";
|
|
string world = "world";
|
|
float () main =
|
|
{
|
|
local string s;
|
|
|
|
print (hello + " " + world + "\n");
|
|
if (hello < world)
|
|
print (hello);
|
|
if (world > hello)
|
|
print (world);
|
|
print ("\n");
|
|
s = hello + world;
|
|
s = s + "\n";
|
|
print (s);
|
|
};
|