RosettaCodeData/Task/Repeat/Sidef/repeat.sidef

10 lines
97 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
func repeat(f, n) {
{ f() } * n;
}
func example {
say "Example";
}
repeat(example, 4);