RosettaCodeData/Task/Factorial/K/factorial-2.k
2023-07-01 13:44:08 -04:00

3 lines
42 B
Text

factr:{:[x>1;x*_f x-1;1]}
factr 6
720