6 lines
108 B
AppleScript
6 lines
108 B
AppleScript
|
|
set str to "ha"
|
||
|
|
set final_string to ""
|
||
|
|
repeat 5 times
|
||
|
|
set final_string to final_string & str
|
||
|
|
end repeat
|