A fast turing machine simulator with graphviz export functionality
git clone https://git.8pit.net/tmsim.git
https://git.8pit.net/tmsim.git
1start: q0; 2accept: q1; 3 4q0 { 5 0 > 1 => q0; 6 1 > 1 => q0; 7}
1start: q0;
2accept: q1;
3
4q0 {
5 0 > 1 => q0;
6 1 > 1 => q0;
7}