7 lines
106 B
AppleScript
7 lines
106 B
AppleScript
|
|
set theList to {"apple", "orange"}
|
||
|
|
count theList
|
||
|
|
-- or
|
||
|
|
length of theList
|
||
|
|
-- or
|
||
|
|
number of items in theList
|