Help for this page

Select Code to Download


  1. or download this
    my $key;
    for my $k( keys %h ) {
      $key = $k if $h{$k} eq 'foo';
    ...
    if( defined $key ) {
      # ...
    }
    
  2. or download this
    while(defined($_ = <STDIN>)) {
        next unless $_ =~ /^something/;
        # ...
    }