0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-20 17:31:08 +00:00
quakeforge/tools/qwaq/main.qc
2002-11-12 02:56:10 +00:00

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;
};