Creating an Array: Difference between revisions

Added AppleScript version
m (Categorizing programming examples)
(Added AppleScript version)
Line 16:
 
{{array operation}}
 
==[[AppleScript]]==
[[Category:AppleScript]]
AppleScript supports "arrays" as "lists," and they are not limited by a single type.
set array1 to {}
set array2 to {1, 2, 3, 4, 'a', 'b', "hello", "world"}
 
==[[BASIC]]==
Anonymous user