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
      my ($key, $value) = s/(\w+)=(.*)/$1: $2/;
    
  4. or download this
      for my $splort (foo()) {
        do {
    ...
        } until (happy($splort));
        print "happy or root\n";
      }