planckforth/benchmark/fib.fs

3 lines
73 B
Forth
Raw Permalink Normal View History

2021-01-11 09:28:57 +01:00
: fib dup 2 < unless 1- dup recurse swap 1- recurse + then ;
30 fib . cr