elikaski / BF-it

A C-like language to Brainfuck compiler, written in Python
MIT License
120 stars 11 forks source link

Fixed bug related to div zero check #44

Closed NeeEoo closed 3 years ago

NeeEoo commented 3 years ago

Having the right side of a operation as something other than NodeToken caused a crash

char arr[5];
printchar(3+arr[2]);