Mega Code Archive
Categories
/
Perl
/
Subroutine
The return values of the ref function
#!/usr/bin/perl use strict; my %hash = ( key => "data" ); print( 'ref(\%hash) = ', ref( \%hash ), "\n" );