December 2014
Beginner
888 pages
25h 23m
English

By the time you finish this chapter, you will understand the following Perl statements:
use Data::Dumper;use warnings;use strict;my $student={ "Name"=>undef, "Major"=>undef, "Courses"=>[], "Stats"=>{}, };$student->{"Courses"}=[ qw( French Algebra Chemistry ) ];$student->{"Stats"}->{"PointAve"}=3.5;$student->{"Stats"}->{"StartDate"}="09/17/12";print Dumper $student;
You have a post office box where you receive mail. The address on a letter contains a reference to your mailbox. The postman goes ...