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
+31
View File
@@ -0,0 +1,31 @@
/* do some function
definitions and calls
in various orders
*/
Keys -> x
F 2 x -> a
a -> Prt
NL
Halt
Def G a b c .
Mult a b -> x
Mult x c -> x
x -> Ret
Def F a b .
Add a 1 -> c
Sub b 1 -> d
G c d 5 -> r
r -> Ret