Help for this page

Select Code to Download


  1. or download this
    use Report 'report';
    
    ...
    my %h = ( one => [ 4, 5, 6], two => 'gaga');
    
    report qw( $i $j $h{one} $h{two} $h{three});
    
  2. or download this
    $i = 42;
    $j = 'freeBSD';
    ...
               ];
    $h{two} = 'gaga';
    $h{three} = undef;
    
  3. or download this
    package Report;
    use strict; use warnings; # @^~`
    ...
    }
    
    1;