RosettaCodeData/Task/Factorial/Klong/factorial.klong

3 lines
68 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
factRecursive::{:[x>1;x*.f(x-1);1]}
2016-12-05 23:44:36 +01:00
factIterative::{*/1+!x}