3 lines
69 B
Text
3 lines
69 B
Text
|
|
repeat[f_, n_] := Do[f[], {n}];
|
||
|
|
repeat[Print["Hello, world!"] &, 5];
|