RosettaCodeData/Task/Repeat/Stata/repeat.stata

10 lines
115 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
function repeat(f,n) {
for (i=1; i<=n; i++) (*f)()
}
function hello() {
printf("Hello\n")
}
repeat(&hello(),3)