RosettaCodeData/Task/Factorial/Sisal/factorial-2.sisal
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

11 lines
129 B
Text

define main
function main(x : integer returns integer)
if x = 0 then
1
else
x * main(x - 1)
end if
end function