Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
        print "end of for stmt\n";
    }
    print "done.\n";
    
  2. or download this
    if (1) {
        print "In if stmt\n";
    ...
        print "end if for stmt\n";
    }
    print "done.\n";