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

7 lines
139 B
Text

bundle Default {
class CompileTime {
function : Main(args : String[]) ~ Nil {
(10*9*8*7*6*5*4*3*2*1)->PrintLine();
}
}
}