Help for this page

Select Code to Download


  1. or download this
    sub PutShare {
        print "Args: ", join(' | ', @_), "\n";
    ...
            print "\n";
        }
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    PutShare(\%User, qw/deep deeper fish halibut/);
    print "The resulting leaves are: '$User{deep}{fish}' and '$User{deep}{
    +deeper}{fish}'\n";
    print "\nDump: ", dump(\%User);
    
  3. or download this
    Args: HASH(0x18241f8) | deep | fish | tuna
      Key = deep
    ...
    The resulting leaves are: 'tuna' and 'halibut'
    
    Dump: { deep => { deeper => { fish => "halibut" }, fish => "tuna" } }
    
  4. or download this
    Dump: { deep => { deeper => { fish => '#LVALUE#' }, fish => "tuna" } }