quakeforge/tools/qfcc/test/params.qc
2011-02-13 19:02:39 +09:00

9 lines
161 B
C++

void printf (string, ...) = #0;
integer main (integer argc, string *argv)
{
integer i;
for (i = 0; i < argc; i++)
printf ("%s\n", argv[i]);
return 0;
}