tests/C_C++/else_while.c
2024-07-22 19:37:02 +02:00

9 lines
85 B
C

main(){
int i = 0;
if(i) {
puts("hurr");
} else while(1) {
puts("durr");
}
}