Help for this page

Select Code to Download


  1. or download this
        return wantarray ? @x : \@x;
    
        return wantarray ? @x : $x[0];
    
  2. or download this
    my $ref = [ $foo -> bar( $stuff) ];
    my @ary =   $foo -> bar( $stuff);
    my $baz = ( $foo -> bar( $stuff) )[0];