Help for this page

Select Code to Download


  1. or download this
    print "if: pre\n";
    if (f()) {
    ...
        my $ifobj = bless ["if"];
    }
    print "if: post\n";
    
  2. or download this
    print "while: pre\n";
    while (f()) {
    ...
        last;
    }
    print "while: post\n";