RosettaCodeData/Task/Fibonacci-sequence/Oz/fibonacci-sequence-2.oz

6 lines
71 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
fun{FibR N}
if N < 2 then N
else {FibR N-1} + {FibR N-2}
end
end