RosettaCodeData/Task/Repeat/AutoHotkey/repeat.ahk
2023-07-01 13:44:08 -04:00

11 lines
90 B
AutoHotkey

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