Help for this page

Select Code to Download


  1. or download this
    if ($x1) {
        if ($x2) {
    ...
    if ( $x1 && $x2 ) {
        print "here\n";
    }
    
  2. or download this
    C:\Perl\scripts>perl -MO=Deparse,-x9 mytest.pl
    $x1 and do {
    ...
        print "here\n"
    };
    mytest.pl syntax OK