Help for this page

Select Code to Download


  1. or download this
       For constructs that do interpolate, variables beginning
       with ""$"" or ""@"" are interpolated, as are the following
       escape sequences.
    
  2. or download this
      use Data::Dumper;
      print Dumper \%hash;
    ...
      while( my ($k, $v) = each %hash ){
        printf " %s --> %s\n", %k, $v;
      }