Help for this page

Select Code to Download


  1. or download this
    $ perl -ML -wE 'my $h = Hash::AsObject->new( foo => "bar" ); say $h->f
    +oo'
    
    Can't locate foo.pm in @INC (you may need to install the foo module)
    
  2. or download this
    $ perl -MHash::AsObject -wE 'my $h = Hash::AsObject->new( foo => "bar"
    + ); say $h->f0o; say 42'
    
    Use of uninitialized value in say at -e line 1.
    
    42
    
  3. or download this
    $ perl -MHash::AsObject -Mstrictures=2,1 -wE 'my $h = Hash::AsObject->
    +new( foo => "bar" ); say $h->f0o; say 42'
    
    Use of uninitialized value in say at -e line 1.