This file contains 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: multiplication Julijan Jug | |
source code: | | |
# Adds 1 to a binary number. | |
input: '1101110' | |
blank: 'b' | |
start state: q0 | |
table: | |
q0: | |
1: {write: 'b', R: q1} | |
0: {write: 'b', R: q13} |