7 lines
214 B
Text
7 lines
214 B
Text
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.");
|