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