4 lines
104 B
Text
4 lines
104 B
Text
templates nthFibonacci
|
|
when <=0|=1> do $ !
|
|
otherwise ($ - 1 -> #) + ($ - 2 -> #) !
|
|
end nthFibonacci
|