Created
June 2, 2020 00:55
-
-
Save blackmius/816df9dfa70044ae260066f7dfd0fdd4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: add 3 | |
source code: | | |
input: '1111' | |
blank: ' ' | |
start state: start | |
table: | |
start: | |
' ': {write: '1', R: add1} | |
'1': R | |
add1: | |
' ': {write: '1', R: add2} | |
add2: | |
' ': {write: '1', R: done} | |
done: | |
positions: | |
start: {x: 502.02, y: 309.3, fixed: false} | |
add1: {x: 458.76, y: 173.98, fixed: false} | |
add2: {x: 317.12, y: 183.9, fixed: false} | |
done: {x: 324.58, y: 325.88, fixed: false} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment