Help for this page

Select Code to Download


  1. or download this
    my %HoH = (
      Bennie => { deaths => 1, kills => 13 },
    ...
      Jane   => { deaths => 0, kills => 30 },
      mary   => { deaths => 4, kills => 20 },
    );
    
  2. or download this
    $playerHoH{Harry}{deaths} += 4;
    $playerHoH{Harry}{kills}  += 20;
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    Another way: Bennie: kills => 13
    =cut