som An idiot admires complexity, a genius admires simplicity. fn fib(n ~ int) -> int { n if n < 2 else fib(n - 1) + fib(n - 2) }