RosettaCodeData/Task/Loops-N-plus-one-half/AppleScript/loops-n-plus-one-half-1.applescript

7 lines
123 B
AppleScript
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
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