]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - test/if.qc
Parsing fixes
[xonotic/gmqcc.git] / test / if.qc
1 float test_1data = 1;
2 float test_2data = 2;
3
4 float test_if()
5 {
6         if (test_1data == test_2data) {
7                 /* do this code */
8         }
9 }