mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
11 lines
195 B
C++
11 lines
195 B
C++
integer (integer argc, string []argv) main =
|
|
{
|
|
local integer i;
|
|
for (i = 0; i < argc; i++) {
|
|
print (argv[i]);
|
|
print ("\n");
|
|
}
|
|
local id foo = [[Foo alloc] init];
|
|
[foo run];
|
|
return 0;
|
|
};
|