/* Factorial output: 3628800 */ fun fact(x:int):int = if (x) < 1 then 1 else (x * fact(x-1) ) in let a = fact(10) in printint a