Skip to content
Snippets Groups Projects
test9.kal 71 B
Newer Older
  • Learn to ignore specific revisions
  • def fib(x)
      if x < 3 then
        1
      else
        fib(x-1)+fib(x-2)
    
    fib(10)