Help for this page

Select Code to Download


  1. or download this
    $hash{foo} ||= keys %hash;
    
  2. or download this
    for($hash{foo}) { $_ ||= keys %hash; }
    
  3. or download this
    for($hash{foo}) { }   # results in { 'foo' => undef }
    
  4. or download this
    sub blackbox { ... }
    blackbox($hash{foo});
    
  5. or download this
    sub blackbox { }   # no autovivify
    
  6. or download this
    sub blackbox { $_[0] = 123 }   # results in { 'foo' => 123 }