Help for this page

Select Code to Download


  1. or download this
    perl -MO=Deparse -e'
    use warnings;
    use strict;
    ...
    
    print %ha;
    '
    
  2. or download this
    use warnings;
    use strict;
    my %ha = (-'foo', 'bar');
    print %ha;
    -e syntax OK