- or download this
$thisname{'frank'} = 1;
$thisname{'lee'} = 2;
$hashname = 'thisname';
print keys(%$hashname);
- or download this
use strict('subs');
$thisname{'frank'} = 1;
$thisname{'lee'} = 2;
$hashname = 'thisname';
print keys(%$hashname);
- or download this
use strict('refs');
$thisname{'frank'} = 1;
$thisname{'lee'} = 2;
$hashname = 'thisname';
print keys(%$hashname);