RosettaCodeData/Task/Repeat-a-string/Tosh/repeat-a-string.tosh
2023-07-01 13:44:08 -04:00

8 lines
151 B
Text

when flag clicked
set String to "meow"
set Count to 4
set Repeated to ""
repeat Count
set Repeated to (join (Repeated) (String))
end
stop this script