programming-examples/perl/String/Demonstrating the qw operator.pl

5 lines
73 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
@array = qw( this is an array of strings );
print "@array\n\n";