Help for this page

Select Code to Download


  1. or download this
    use dir_one::my_package qw(%my_hash);
    BEGIN {
    ...
    use dir_two::my_package qw(%my_hash);
    
    print "%s\n", Dumper(\%my_hash);
    
  2. or download this
    print Dumper(\%my_hash);
    
  3. or download this
    use dir_one::my_package;
    BEGIN {
    ...
    use dir_two::my_package;
    
    print Dumper(\%my_hash);