Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
       $x->Counter++;                      print($x->Counter, "\n");  # 5
       $x->Counter += 1;                   print($x->Counter, "\n");  # 6
    }