8 lines
147 B
Text
8 lines
147 B
Text
MODULE CompileTime;
|
|
IMPORT
|
|
Out;
|
|
CONST
|
|
tenfac = 10*9*8*7*6*5*4*3*2;
|
|
BEGIN
|
|
Out.String("10! =");Out.LongInt(tenfac,0);Out.Ln
|
|
END CompileTime.
|