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