RosettaCodeData/Task/Fibonacci-sequence/Bracmat/fibonacci-sequence-2.bracmat
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

13 lines
197 B
Text

(fib=
last i this new
. !arg:<2
| 0:?last:?i
& 1:?this
& whl
' ( !i+1:<!arg:?i
& !last+!this:?new
& !this:?last
& !new:?this
)
& !this
)