parser: maybe fixed a parser bug; examples: added them

This commit is contained in:
2017-05-25 18:04:57 -04:00
parent e91588ab96
commit e612b3c226
4 changed files with 15 additions and 1 deletions

2
examples/factorial.bc Normal file
View File

@@ -0,0 +1,2 @@
define f(x) {if(x <= 1){1}else{f(x - 1) * x}}
f(100)