Something inspired by Nim and Python. ```nim Int -> Int def fib(a): if a < 2: 1 else: fib(a - 1) + fib(a - 2) echo(fib(0)) ```