rubyx-debugger/codes/fibo_recur.soml
Torsten Ruger 66e989f066 update salama
with word fixes mostly
2015-11-10 11:50:56 +02:00

23 lines
369 B
Plaintext

class Object
int fibonaccir( int n )
if_plus( n - 1 )
int tmp
tmp = n - 1
int a = fibonaccir( tmp )
tmp = n - 2
int b = fibonaccir( tmp )
return a + b
else
return n
end
end
int fib_print(int n)
int fib = fibonaccir( n )
fib.putint()
return fib
end
int main()
return fib_print(7)
end
end