planckforth/example/fib.fs

3 lines
73 B
Forth
Raw Permalink Normal View History

2021-01-09 09:29:32 +01:00
: fib dup 2 < unless 1- dup recurse swap 1- recurse + then ;
2021-01-09 17:14:42 +01:00
20 fib . cr