mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-12 14:45:52 +00:00
16 lines
173 B
C++
16 lines
173 B
C++
|
void a() {
|
||
|
if (1)
|
||
|
for (float i = 0; i < 3; ++i)
|
||
|
print(ftos(i));
|
||
|
}
|
||
|
|
||
|
void b() {
|
||
|
if (1)
|
||
|
for (float i = 0; i < 3; ++i)
|
||
|
print(ftos(i));
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
a();
|
||
|
b();
|
||
|
}
|