RosettaCodeData/Task/Factorial/Logo/factorial-2.logo
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

6 lines
108 B
Text

to factorial :n
make "fact 1
make "i 1
repeat :n [make "fact :fact * :i make "i :i + 1]
print :fact
end