nctref/examples/if.nct
2025-08-14 18:22:31 +03:00

8 lines
51 B
Plaintext

u16 x: 5;
if(x != 0) {
x = 2;
} else {
x = 5;
}