CPU: Perl, Fall 2005 Perl, Week 3: More Arrays, Context, Subroutines, Lexical Variables #7

Review: Arrays

$sides[5] = 'mac & cheese';
$sides[0] = 'sweet potatoes';
@things = (@big, undef, (), @big);
@my_cars = @cool_cars;
Copyright © 2005 Ian Langworth