Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    $Data::Dumper::Sortkeys = 1;
    ...
        print "Inside othersub()\n";
        print Dumper($args), "\n\n";
    }
    
  2. or download this
    Before calling mysub($args)
    $VAR1 = {'baz' => 2,'foo' => 1};
    ...
    
    After calling mysub($args)
    $VAR1 = {'baz' => 2,'foo' => 1};