Help for this page

Select Code to Download


  1. or download this
    my @foo;
    @foo[0..2] = (10, \$foo[0], 20);
    print ${ $foo[1] };  # 10
    
  2. or download this
    my @foo;
    @foo = (10, \$foo[0], 20);
    print ${ $foo[1] };  # nothing