The return values of the ref function: hash : Return « Subroutine « Perl
- Perl
- Subroutine
- Return
The return values of the ref function: hash
#!/usr/bin/perl
use strict;
my %hash = ( key => "data" );
print( 'ref(\%hash) = ', ref( \%hash ), "\n" );
Related examples in the same category