RosettaCodeData/Task/Compile-time-calculation/Zkl/compile-time-calculation.zkl

8 lines
214 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
const { [1..10].reduce('*).println(" parse time") }
#fcn fact(N) { [1..N].reduce('*).println(" tokenize time"); ""}
// paste output of fact into source
#tokenize fact(10)
println("compiled program running.");