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