Help for this page

Select Code to Download


  1. or download this
      if (undef($a) || undef($b)) { ... }
    
  2. or download this
      if ($a = 1) { ... }
    
  3. or download this
    for my $k (keys %hash) {
        if ($k eq "name") {
            $hash{$k}++;
        }
    }