RosettaCodeData/Task/Repeat-a-string/AutoHotkey/repeat-a-string.ahk
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

8 lines
103 B
AutoHotkey

MsgBox % Repeat("ha",5)
Repeat(String,Times)
{
Loop, %Times%
Output .= String
Return Output
}