mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
14 lines
190 B
C++
14 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;
|
||
|
}
|
||
|
}
|