Help for this page

Select Code to Download


  1. or download this
    $hello[1] = 'hi';
    
  2. or download this
    my @first = qw/one two three/;
    my @second = qw/four five six/;
    ...
    for $value(@first){
        $second[++$#second] = $value;
    }
    
  3. or download this
    $second[3] = $value;
    
  4. or download this
    push(@second, @first);