December 2014
Beginner
888 pages
25h 23m
English

By the end of this chapter, you will be able to read the following Perl code:
use strict;use warnings;my @l = qw/a b c d d a e b a b d e f/;my %hash=();foreach my $key (@l){ $hash{$key} = $key;}print join(" ",sort keys %hash),"\n";
Again, please take note that each line of code, in most of the examples throughout this book, is numbered. The output and explanations are also numbered to match the numbers in the code. When copying examples into your text editor, don’t include these numbers, or you will generate errors.