diff options
-rw-r--r-- | turing-machine/index.html | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/turing-machine/index.html b/turing-machine/index.html index 8bd600f..50b39c9 100644 --- a/turing-machine/index.html +++ b/turing-machine/index.html @@ -33,13 +33,11 @@ <li>comments ("//") are ignored</li> </ul> <textarea id="instructions"> -// replaces 3 B's with "1" +// replaces 2 B's with "1" q0 B 1 q1 q1 1 R q1 -q1 B 1 q2 -q2 1 R q2 -q2 B 1 f</textarea - > +q1 B 1 f +</textarea> <div> <button id="compile">Compile</button ><span style="margin-left: 0.5rem" id="compile_status"></span> |