8 lines
103 B
AutoHotkey
8 lines
103 B
AutoHotkey
MsgBox % Repeat("ha",5)
|
|
|
|
Repeat(String,Times)
|
|
{
|
|
Loop, %Times%
|
|
Output .= String
|
|
Return Output
|
|
}
|