Interpreter input files for testing

This commit is contained in:
vegowotenks 2024-10-08 22:48:46 +02:00
parent 2b9e33b106
commit b17df7cb40
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,7 @@
fib: int a -> int
| a 0 == -> 1
| a 1 == -> 1
| 1 1 == -> a 1 - fib a 2 - fib + duplicate println
;
10 fib