RosettaCodeData/Task/Loops-N-plus-one-half/AppleScript/loops-n-plus-one-half-1.applescript
2026-04-30 12:34:36 -04:00

6 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