Help for this page

Select Code to Download


  1. or download this
    # umm -- uh.... well, the @sign implies
    # we have an array, but how is it 
    # different from the first array we
    # dereferenced?
    
  2. or download this
    my $ref1 = ['a','b','c'];
    my $ref2 = ['d','e','f'];
    ...
            $list[0] = ['1','2','3'];
    }