mirror of
https://github.com/nineties/planckforth
synced 2025-01-13 08:01:10 +01:00
2 lines
73 B
Forth
2 lines
73 B
Forth
: fib dup 2 < unless 1- dup recurse swap 1- recurse + then ;
|
|
20 fib . cr
|