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

5 lines
109 B
AppleScript

set str to "ha"
set final_string to ""
repeat 5 times
set final_string to final_string & str
end repeat