# 1/ print "Current row number is $row\n"; ++$row; # 2/ my $oldRowValue = $row; ++$row; print "Current row number is $oldRowValue\n"; # 3/ printf "Current row number is %d\n", $row++;