Initial Commit

This commit is contained in:
2018-10-15 12:47:14 -06:00
commit 0c531ffff9
55 changed files with 7285 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
Keys -> x
top:
x -> Prt NL
Eq x 1 -> Jmp exit:
Rem x 2 -> r
Eq r 0 -> Jmp even:
Jmp odd:
even:
Quot x 2 -> x
Jmp top:
odd:
Mult 3 x -> x
Add x 1 -> x
Jmp top:
exit:
Halt