mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 09:02:25 +00:00
22 lines
195 B
C++
22 lines
195 B
C++
if(1) {
|
|
if(1) {
|
|
return 0;
|
|
} else {
|
|
return 1;
|
|
}
|
|
} else {
|
|
for {
|
|
if(1) {
|
|
return 2;
|
|
} else {
|
|
continue;
|
|
}
|
|
}
|
|
do {
|
|
if(1){
|
|
break;
|
|
} else {
|
|
goto finish;
|
|
}
|
|
} while ( )
|
|
}
|