Help for this page

Select Code to Download


  1. or download this
    #! perl
    $x = 3;
    ...
      || $x == 3) {
        print "Yeah!\n";
    }
    
  2. or download this
    test.pl syntax OK
    $x = 3;
    if ($x == 2 or $x == 3) {
        print "Yeah!\n";
    }
    
  3. or download this
    $x = 3;
    if(
    ...
      $x == 3) {
        print "Yeah!\n";
    }