RosettaCodeData/Task/Loops-For/AppleScript/loops-for.applescript
2015-02-20 00:35:01 -05:00

8 lines
141 B
AppleScript

set x to return
repeat with i from 1 to 5
repeat with j from 1 to i
set x to x & "*"
end repeat
set x to x & return
end repeat
return x