Help for this page

Select Code to Download


  1. or download this
    my $result;
    foreach my $v (keys %hash) {
    if (exists $hash{$v}{'later'}) {
      $result= $v;
    }
    
  2. or download this
    print join(' ',keys %hash);