RosettaCodeData/Task/Generate-lower-case-ASCII-alphabet/AppleScript/generate-lower-case-ascii-alphabet-2.applescript
2023-07-01 13:44:08 -04:00

6 lines
121 B
AppleScript

set l to {}
repeat with i from id of "a" to id of "z"
set end of l to i
end repeat
return characters of string id l