Help for this page

Select Code to Download


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