]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/ifs.qc
7a7f13cf91ef81683818444211ba4eb1f46c90f8
[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 };