Skip to content
myreen edited this page Mar 31, 2014 · 1 revision

The following is a test:

 fun fib n = if n < 2 
             then n 
             else fib (n-1) + fib (n-2)

End of test!

Clone this wiki locally