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

9 lines
97 B
Text

func repeat(f, n) {
{ f() } * n;
}
func example {
say "Example";
}
repeat(example, 4);