RosettaCodeData/Task/Repeat/Zkl/repeat.zkl
2023-07-01 13:44:08 -04:00

2 lines
55 B
Text

fcn repeat(f,n){ do(n){ f() } }
repeat("ho ".print,3);