A easy implementation of the turing machine
More about the turing machine: https://en.wikipedia.org/wiki/Turing_machine
Fork me on Github: https://github.com/pandermatt/turing-machine
Full Demo on YouTube
Made with TPP
- with Java
- 3 Tapes
//Tapes on first run
Tape 1: [0, 0, 0, 1, 0, 0] //3*2
Tape 2: [ ]
Tape 3: [ ]
- Step Mode 🐢 and Fast Mode 🐇
- Multiplication:
2*6
- Step Mode 🐢: shows every step
1
enable step mode0
disable step mode
- Fast Mode 🐇: disable all
System.out.println
1
enable fast mode0
disable fast mode
- Infinity Tape ⏩
1
print as infinity tape0
print only content
- Timeout ⏰
- timeout between the step
java Main [multiplication] [step mode] [fast mode] [infinity tape] [timeout]
java Main "2*6" 1