Creating an Array: Difference between revisions

Cleaner names, separate example for list with multiple types of objects
(Cleaner names, simpler implementation)
(Cleaner names, separate example for list with multiple types of objects)
Line 37:
[[Category:AppleScript]]
AppleScript supports "arrays" as "lists," and they are not limited by a single type.
set array1empty to {}
set array2ints to {1, 2, 3, 4, "hello", "world"}
set any to {1, "foo", 2.57}
 
==[[BASIC]]==
Anonymous user