RosettaCodeData/Task/Repeat/AutoHotkey/repeat.ahk

12 lines
90 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
repeat("fMsgBox",3)
return
repeat(f, n){
loop % n
%f%()
}
fMsgBox(){
MsgBox hello
}