the programming language
1 2 3 4 5
0 fib = 1 1 fib = 1 (n: Integer) fib := (n - 2) fib + (n - 1) fib { 20 fib print } time print