Help for this page

Select Code to Download


  1. or download this
    $ref= \@something; 
    print $ref; 
    ...
    $ref2= \@something;
    print $ref2;
    # would print 0x12345 as well
    
  2. or download this
    $ref= [ @something ]; # would be the same as 
    $ref= \( @something ); # if that syntax where possible, or
    my @x= ( @something ); # with correct syntax
    $ref= \@x;