Review: Arrays
- A variable that contains a list
$sides[5] = 'mac & cheese'; $sides[0] = 'sweet potatoes'; @things = (@big, undef, (), @big); @my_cars = @cool_cars;
| CPU: Perl, Fall 2005 | Perl, Week 3: More Arrays, Context, Subroutines, Lexical Variables | #7 |
$sides[5] = 'mac & cheese'; $sides[0] = 'sweet potatoes'; @things = (@big, undef, (), @big); @my_cars = @cool_cars;
| Copyright © 2005 Ian Langworth |