Help for this page

Select Code to Download


  1. or download this
    # named printing is still not DRY, but much better than:
    # print Data::Dumper->Dump( [$ref], ['*ref'] );
    print '$ref = ', pp($ref), "\n";
    
  2. or download this
    use Data::Dumper qw/Dumper/;
    print '$ref = ', Dumper($ref), "\n";