parser: maybe fixed a parser bug; examples: added them
This commit is contained in:
2
examples/factorial.bc
Normal file
2
examples/factorial.bc
Normal file
@@ -0,0 +1,2 @@
|
||||
define f(x) {if(x <= 1){1}else{f(x - 1) * x}}
|
||||
f(100)
|
Reference in New Issue
Block a user