RosettaCodeData/Task/Compile-time-calculation/Oz/compile-time-calculation.oz

13 lines
205 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
functor
import
System Application
prepare
fun {Fac N}
{FoldL {List.number 1 N 1} Number.'*' 1}
end
Fac10 = {Fac 10}
define
{System.showInfo "10! = "#Fac10}
{Application.exit 0}
end