Li-Fan Chen says to OwO
Language: haskell Source: main= putStr $ show x fib 1 = 1 fib 2 = 1 fib n = fib (n-1) + fib (n-2) x = fib 20 Result: 6765