Help for this page

Select Code to Download


  1. or download this
    use strict;
    my @arr = qw(a b c d e f g h);
    my $str;
    $str .= shift(@arr) until (!(@arr));
    print $str;
    
  2. or download this
    $str = join '', @arr;