Help for this page

Select Code to Download


  1. or download this
    *foo = [qw (a b c)];
    {
    ...
    local @{*foo{ARRAY}} = qw(1 2 3)
    local @foo = qw(1 2 3)
    global @foo = qw(a b c)
    
  2. or download this
    *foo = [qw (a b c)];
    {
    ...
    my @{*foo{ARRAY}} = qw(1 2 3)
    my @foo = qw(a b c)
    global @foo = qw(a b c)