tmsim

A fast turing machine simulator with graphviz export functionality

git clone https://git.8pit.net/tmsim.git

 1start: q0;
 2accept: q1;
 3
 4q0 {
 5	0 | 1 => q1;
 6	1 | 2 => q1;
 7	2 | 3 => q1;
 8	3 | 4 => q1;
 9	4 | 5 => q1;
10	5 | 6 => q1;
11	6 | 7 => q1;
12	7 | 8 => q1;
13	8 | 9 => q1;
14	9 | 0 => q1;
15}