]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/accumulate.qc
46e04463f7747299e98010281af95f62e5594a2f
[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 }