Creating an Array: Difference between revisions

m
m (→‎{{header|E}}: moved from pascal)
Line 98:
=={{header|AppleScript}}==
AppleScript arrays are called lists:
<lang applescript> set empty to {}
set ints to {1, 2, 3}</lang>
 
Lists can contain any objects including other lists:
<lang applescript> set any to {1, "foo", 2.57, missing value, ints}</lang>
 
=={{header|AutoHotkey}}==