Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
test9.kal 71 B
def fib(x)
  if x < 3 then
    1
  else
    fib(x-1)+fib(x-2)

fib(10)