Help for this page

Select Code to Download


  1. or download this
    @a = qw(a b c);
    $foo = "hello";
    ...
    array: @a
    scalar: $a
    END
    
  2. or download this
    $foo = "hello";
    *a = \$foo;
    $a = "bye";
    print "$foo\n";