# New Ticket Created by Sam S.
# Please include the string: [perl #130554]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=130554 >
The range operator lets us generate a range of characters in codepoint order:
say list 'a' .. 'f'; # (a b c d e f)
say list '1' .. '6'; # (1 2 3 4 5 6)
say list '!' .. '&'; # (! " # $ % &)
However, the endpoint exclusion provided by the ..^, ^.., ^..^
variants of the operator only seems to work when the endpoints are
alphanumeric characters:
say list 'a' ^..^ 'f'; # (b c d e)
say list '1' .. '6'; # (2 3 4 5)
say list '!' ^..^ '&'; # (! " # $ % &)