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.
Simple code to reproduce:
This outputs 1.
Changing 255 to 254 outputs 0 as expected.
This was checked in multiple online interpreters.