Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    
    ...
    $hash = {"a",\&a, "b", \&b};
    $Data::Dumper::Deparse = 1;
    print Dumper($hash);
    
  2. or download this
    use Data::Dumper;
    
    ...
    $hash = {"a",sub {print "abc"}, "b", \&b};
    $Data::Dumper::Deparse = 1;
    print Dumper($hash);