This commit is contained in:
2024-02-21 15:37:38 +01:00
parent 153216ce63
commit ee2817afbb
11 changed files with 40 additions and 36 deletions

View File

@ -1,7 +1,7 @@
hello|
define fib<1> as [
return 1 if argument #1 = 1|
return 1 if argument #1 = 2|
do return 1 if argument #1 = 1|
do return 1 if argument #1 = 2|
return do "fib"<argument #1-1;> + do "fib"<argument #1-2;>|
]|
do print<do "fib"<1;>;>|