# New Ticket Created by Itsuki Toyota
# Please include the string: [perl #129100]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=129100 >
See the following results.
$ perl6 -e '("10"..15).rand.say' # min is Str
Can only get a random value on Real values, did you mean .pick?
in block <unit> at -e line 1
Actually thrown at:
in block <unit> at -e line 1
$ perl6 -e '(10.."15").rand.say' # max is Str
13.1798515362137
I think that the 2nd example should cause the error same as the 1st example.