mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
10 lines
192 B
C++
10 lines
192 B
C++
void(float c) main = {
|
|
if (c == 1)
|
|
print("One\n");
|
|
else if (c == 2)
|
|
print("Two\n");
|
|
else if (c == 3)
|
|
print("Three\n");
|
|
else
|
|
print("Else\n");
|
|
};
|