Help for this page

Select Code to Download


  1. or download this
    $foo->{bar}{baz} = 4;
    
  2. or download this
    ${ $foo->{bar} }{baz} = 4;
    
  3. or download this
    $foo->{bar}{baz}->@[1, 2, 3] = (100, 200, 500);
    
  4. or download this
    @{ $foo->{bar}{baz} }[1, 2, 3] = (100, 200, 500);
    
  5. or download this
    $foo->{bar}{baz}->$* = 4;
    
  6. or download this
    ${ $foo->{bar}{baz} } = 4;