fib := fn(x) { if (x < 2) { return x } return fib(x-1) + fib(x-2) } N := 35 if (len(args()) > 0) { N = int(args()[0]) } println(fib(N))