Next: What is an Array?
Up: Practical Perl Programming
Previous: String Scalar Variables
We can have literal and variable arrays in Perl
We can also have two forms of array:
- Arrays - An array is a series of numbers and strings handled
as a unit. You can also think of an array as a list.
- Associative Arrays - This is the most complicated data type.
Think of it as a list in which every value has an associated lookup
item.
dave@cs.cf.ac.uk