tur 0.1.0

Turing Machine Language - Parser, interpreter, and execution engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
name: Multi-Tape Example
heads: [0, 0]
tapes:
  [a, b, c]
  [x, y, z]
rules:
  start:
    [a, x] -> [b, y], [R, R], middle
    [b, y] -> [c, z], [L, R], start
  middle:
    [b, y] -> [c, z], [R, S], end
    [c, z] -> [a, x], [L, L], start
  end: