Help for this page

Select Code to Download


  1. or download this
    $x = My::Module->new(){
      foo => 'bar',
      baz => qw( bax bof )
    }
    
  2. or download this
    
    foreach ( @{ $self->{'baz'} } ) {
                # some code
            }
    
  3. or download this
    $x = My::Module->new(){
      foo => 'bar',
      baz => qw( bax bof )
    }
    
  4. or download this
    $x = My::Module->new(){
      foo => 'bar',
      baz => [ 'bax' , 'bof']
    }