back from the dead, some syntax thoughts

This commit is contained in:
Brian Picciano 2020-10-05 21:17:12 -06:00
parent ad1e99585b
commit fed2c35868

15
sandbox/syntax.txt Normal file
View File

@ -0,0 +1,15 @@
decr- add- |- in
|- (-1)
fib- (
fibInner- (
{n, a, b}- in
out- if- |- zero?- n
|- a
|- fibInner- |- decr- n
|- b
|- add- {a,b}
)
)
out- fib- atoi- first- in