Help for this page

Select Code to Download


  1. or download this
    =head1 Junctions
    
    ...
    print 'On the weekend she enjoys '; 
    print join ', and ', @weekend_hash;
    print '.';
    
  2. or download this
    my @grades = qw/ 0 1 2 3 /;
    my %student_count_by_grade;
    @student_count_by_grade{@grades} = (0) x 4;