10 lines
97 B
Text
10 lines
97 B
Text
|
|
func repeat(f, n) {
|
||
|
|
{ f() } * n;
|
||
|
|
}
|
||
|
|
|
||
|
|
func example {
|
||
|
|
say "Example";
|
||
|
|
}
|
||
|
|
|
||
|
|
repeat(example, 4);
|