Files @ r13029:d6cdd1e2b288
Branch filter:

Location: cpp/openttd-patchpack/source/src/3rdparty/squirrel/samples/fibonacci.nut

smatz
(svn r17537) -Fix: don't crash while printing gamelog in crash handler if we crashed before while gamelog action was active
/*
*
* Original Javascript version by David Hedbor(http://www.bagley.org/~doug/shootout/)
*
*/

function fib(n)
{
    if (n < 2) return 1
    return fib(n-2) + fib(n-1)
}

local n = ARGS.len()!=0?ARGS[0].tointeger():1

print(fib(n)+"\n")