Mega Code Archive

 
Categories / Perl / Data Type
 

Get the value from a reference

$scalar = $$scalarreference; @array = @$arrayreference; %hash = %$hashreference; &$codereference($argument1, $argument2); *glob = *$globreference;