Help for this page

Select Code to Download


  1. or download this
    if ($a == 1 or $b == 2) {
       ...
    }
    
  2. or download this
    my $cond = $a == 1 or $b == 2;    XXX
    if ($cond) {
       ...
    }