Creating an Array: Difference between revisions

Content added Content deleted
m (Categorizing programming examples)
(Added AppleScript version)
Line 16: Line 16:


{{array operation}}
{{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]]==
==[[BASIC]]==