implementation of useful error messages

This commit is contained in:
vegowotenks 2024-10-10 18:59:17 +02:00
parent 2ce8200366
commit c12e763b28
14 changed files with 295 additions and 68 deletions

View file

@ -3,7 +3,7 @@ fib: int n -> int
| iterations 0 == -> a b +
| 1 -> a b + println b a b + iterations 1 - fib
;
1 1 n fib
0 1 n fib
;
50 fib println