use strict;
my $name = "Will";
my $area_code = 713;
my $desired_bonus = 1_000_000;
print qq(my name is $name, but you can call me "Willis");
print q(What you talk'n about, "Willis"?);
my @friends = ( 'Ned', 'Brady', 'Keith', 'John', 'Mo' );
my @favorite_numbers = ( 8, 4, 22, 77 );
my @favorite_numbers = qw( 8 4 22 77 );
my @random_scalars = ( 8, "eight", -80, $name );
print $friends[1];
print @friends[ 1 .. 3 ];
$friend[99] = 'Todd';
print "I have " . $#friends + 1 . " friends\n";
my $friend_count = @friends;
print "I have $friend_count friends\n";
my %spanish = (
'one' => 'uno',
'two' => 'dos',
'three' => 'tres'
);
my $three = $spanish{three};
$spanish{four} = 'cuatro';
@spanish{'five', 'six'} = ('cinco', 'seis')