Help for this page

Select Code to Download


  1. or download this
    $ perl -E 'my @name = qw{a b c}; say for @name'
    a
    b
    c
    
  2. or download this
    $ perl -E 'my $name_ref = [qw{a b c}]; say for @$name_ref'
    a
    b
    c
    
  3. or download this
    $ perl -E 'my @name = qw{a b c}; my $name_ref = \@name; say for @$name
    +_ref'
    a
    b
    c