Help for this page

Select Code to Download


  1. or download this
    print Dumper(%hash);   # Dumps the result of evaluating the hash. Meh.
    print Dumper(\%hash);  # Dumps the ref and the referenced hash. Good.
    
  2. or download this
    print Dumper(\$po);  # Why??
    print Dumper($po);   # Good.