Help for this page

Select Code to Download


  1. or download this
    qw[this is the first line],
    qw[second one is here]
    
  2. or download this
    qw[this is the first line second one is here]
    
  3. or download this
    my @refarray = ([qw/this is the first line/],
                    [qw/second one is here/],
                   );
    print "@{$refarray[0]}\n";