]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/ifs.qc
Merge branch 'divVerent/ftypeless-stores' of git://git.xonotic.org/xonotic/gmqcc...
[xonotic/gmqcc.git] / tests / ifs.qc
1 void(float c) main = {
2     if (c == 1)
3         print("One\n");
4     else if (c == 2)
5         print("Two\n");
6     else if (c == 3)
7         print("Three\n");
8     else
9         print("Else\n");
10 };