Creating an Array: Difference between revisions

Content deleted Content added
Add Ada version
Line 54:
#You would call the array by this code. This will call the 3rd 1 on the second list
print $Array[1][3];
 
# Alternative:
my @array_using_qw = qw/coffee sugar cream/;
 
==[[Ada]]==