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