RosettaCodeData/Task/Repeat/AutoHotkey/repeat.ahk

12 lines
90 B
AutoHotkey

repeat("fMsgBox",3)
return
repeat(f, n){
loop % n
%f%()
}
fMsgBox(){
MsgBox hello
}