]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/variadic.qc
Make the varargs counter more stable, it'll now work with a function pointer with...
[xonotic/gmqcc.git] / tests / variadic.qc
1 void(...) print = #1;
2
3 void() main = {
4     print("hello", " world");
5 }