nklopstock611 / turing-machine-interpreter

Interpreter for a little Turing Machine like language.
1 stars 0 forks source link

Changes in Lexer/Parser #9

Closed nklopstock611 closed 9 months ago

nklopstock611 commented 9 months ago

There's a horrible bug!! The code L 'W' does not work! The interpreter reads 'W' as a instruction and not the char 'W'. I think the solution is to add a string like "_instruc" to every instruction when the program array is created (also change the ifs in tm.py).

nklopstock611 commented 9 months ago

fixed!