Help for this page

Select Code to Download


  1. or download this
    my @ar   = qw/ foo bar baz /;
    my %hash = ( one => @ar );
    ...
    __output__
    
    foo
    
  2. or download this
    my @ar   = qw/ foo bar baz /;
    my %hash = ( one => \@ar );
    ...
    __output__
    
    foobarbaz
    
  3. or download this
    use Array::Compare;
    
    ...
    __output__
    
    the same
    
  4. or download this
    use Test::More;
    
    ...
    __output__
    
    the same