func fib(x:Int) -> Int { if (x <= 1) { return x; } return fib(x-1) + fib(x-2); } var result := fib(25); __fstdout_println("result: ", result);