Help for this page

Select Code to Download


  1. or download this
    The auto-increment operator has a little extra builtin
    magic to it.  If you increment a variable that is numeric,
    ...
               print ++($foo = 'Az');      # prints 'Ba'
               print ++($foo = 'zz');      # prints 'aaa'