tests/else_while.c
2024-03-10 15:57:35 +01:00

9 lines
85 B
C

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