RosettaCodeData/Task/Array-length/AppleScript/array-length-1.applescript

7 lines
106 B
AppleScript
Raw Normal View History

2023-07-01 11:58:00 -04:00
set theList to {"apple", "orange"}
count theList
-- or
length of theList
-- or
number of items in theList