Couldn't load subscription status. Retry
There was an error while loading. Please reload this page.
Something inspired by Nim and Python.
Int -> Int def fib(a): if a < 2: 1 else: fib(a - 1) + fib(a - 2) echo(fib(0))