Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "$i\n";  # still prints 3, so something must be wrong!
    $i=$i+3;       # check whether Perl works correctly...
    print "$i\n";  # prints 6, what a relief