]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/accumulate.qc
Does this fix it?
[xonotic/gmqcc.git] / tests / accumulate.qc
1 [[accumulate]] void foo() {
2     print("hello ");
3 }
4 [[accumulate]] void foo() {
5     print("accumulation ");
6 }
7 [[accumulate]] void foo() {
8     print("world\n");
9 }
10
11 void main() {
12     foo();
13 }