]> git.xonotic.org Git - xonotic/gmqcc.git/blob - testsuite/variadic/main.qc
Fixing some indentation
[xonotic/gmqcc.git] / testsuite / variadic / main.qc
1 void(string, ...) print = #1;
2
3 void(string what) main = {
4     print(what, "\n");
5 };