mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
13 lines
190 B
C++
13 lines
190 B
C++
void main() {
|
|
float j;
|
|
for (j = 0; j < 2; ++j)
|
|
print("+");
|
|
|
|
for (float i = 0; i < 5; ++i)
|
|
print("*");
|
|
|
|
for (;;) {
|
|
print("\n");
|
|
break;
|
|
}
|
|
}
|