Help for this page

Select Code to Download


  1. or download this
    my @tarray = qw(one two three four five);
    my ($v2) = @tarray;
    my $v3 = (@tarray)[0];
    
  2. or download this
    my $v3 = (@tarray)[0];
    
  3. or download this
    my ($v2) = @tarray;