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