7 lines
123 B
AppleScript
7 lines
123 B
AppleScript
|
|
set AppleScript's text item delimiters to ", "
|
||
|
|
set a to {}
|
||
|
|
repeat with n from 1 to 10
|
||
|
|
set a to a & n
|
||
|
|
end repeat
|
||
|
|
a as text
|