Help for this page

Select Code to Download


  1. or download this
    use constant GROUPS => {
                              A => 1,
    ...
                              2 => y,
                              3 => z
                           };
    
  2. or download this
    while ( my ($k,$val) = each %{ +GROUPS } ) {
    
  3. or download this
      while ( my ($k,$val) = each ($k)) {
         
         print $k{val} ;
      } 
    }