quakeforge/tools/qfcc/test/old/params.qc
Bill Currie 49ca09a64f Clean up qfcc's test directory.
I don't remember what half these tests were for :/
2012-11-22 21:58:52 +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;
}