Help for this page

Select Code to Download


  1. or download this
    if ($x = $y) {
       print "$y = $x\n";
    }
    
  2. or download this
    print "$y = $x\n" if ($x = $y);
    
  3. or download this
    if ($y eq $x) {
     print "$y = $x\n";
    ...
    elsif ($debug eq 1) {
     print "$y != $x\n";
    }