Help for this page

Select Code to Download


  1. or download this
    %x = ( %x, bar => "def", baz => "ghi" );
    
  2. or download this
    @x{qw( bar baz )} = ( "def", "ghi" );
    
  3. or download this
    %$x = ( %$x, bar => "def", baz => "ghi" );
    
  4. or download this
    @$x{qw( bar baz )} = ( "def", "ghi" );