BurritOS/test_programs/riscv_instructions/boolean_logic/switch.c

7 lines
106 B
C
Raw Normal View History

2023-02-08 16:01:41 +01:00
int main() {
int x = 0;
switch(1) {
case 1: x = 1; break;
default: return;
}
}