Help for this page

Select Code to Download


  1. or download this
    $x = {
      foo => 'bar',
      baz => qw( bax bof )
    }
    
  2. or download this
    $x = {
      foo => 'bar',
      baz => 'bax', 'bof'
    }
    
  3. or download this
    $x = {
      foo => 'bar',
      baz => [ qw( bax bof ) ]
    }