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

7 lines
124 B
Text

bundle Default {
class Fact {
function : Main(args : String[]) ~ Nil {
5->Factorial()->PrintLine();
}
}
}