diff options
author | Elizabeth (Lizzy) Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-25 11:01:35 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 11:01:35 -0600 |
commit | 1aefa0f9b1da1c7bb99f7605c334eaf691ba2fda (patch) | |
tree | 90a47ccff1b8fcc8143202c556116b44de632682 | |
parent | 30f9f2bc185b88669030f7b1a433d79c39c9f1bf (diff) | |
download | simponic.xyz-1aefa0f9b1da1c7bb99f7605c334eaf691ba2fda.tar.gz simponic.xyz-1aefa0f9b1da1c7bb99f7605c334eaf691ba2fda.zip |
change default program
-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> |