in reply to Re: How the auto-increment operator works?
in thread How the auto-increment operator works?

What's the range to get zz++ —> aaa please?
  • Comment on Re^2: How the auto-increment operator works?

Replies are listed 'Best First'.
Re^3: How the auto-increment operator works?
by AnomalousMonk (Archbishop) on Jul 31, 2020 at 04:25 UTC

    c:\@Work\Perl\monks>perl -wMstrict -le "print for 'zx' .. 'aac'; ;; my $s = 'zx'; print $s++ for 0 .. 5; " zx zy zz aaa aab aac zx zy zz aaa aab aac


    Give a man a fish:  <%-{-{-{-<

      Thank you very much, AnomalousMonk and perlfan.