let function fib (x: int): int = if x > 1 then fib (x-1) + fib (x-2) else 1 in if 10 > 0 then fib (10) else fib (0) end