c2bf
c2bf copied to clipboard
255 < 10 is true
Simple code to reproduce:
if(255 < 10){
write_char('1');
}
else {
write_char('0');
}
This outputs 1.
Changing 255 to 254 outputs 0 as expected.
This was checked in multiple online interpreters.