Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    my @x = qw/a b c/;
    my $x = \@x;
    print "Array elements with spaces: @$x";