7 lines
114 B
Perl
7 lines
114 B
Perl
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
|
|
my %hash = ( key => "data" );
|
|
|
|
print( 'ref(\%hash) = ', ref( \%hash ), "\n" ); |