12 lines
90 B
AutoHotkey
12 lines
90 B
AutoHotkey
|
|
repeat("fMsgBox",3)
|
||
|
|
return
|
||
|
|
|
||
|
|
repeat(f, n){
|
||
|
|
loop % n
|
||
|
|
%f%()
|
||
|
|
}
|
||
|
|
|
||
|
|
fMsgBox(){
|
||
|
|
MsgBox hello
|
||
|
|
}
|