# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #128757] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=128757 >
Code: say [*] ‘hello’ Result: hello Code: say [/] ‘hello’ Result: hello Code: say [-] ‘hello’ Result: hello OK, so we get the idea, right? Code: say [+] ‘hello’ Result: Cannot convert string to number: base-10 number must begin with valid digits or '.' in '⏏hello' (indicated by ⏏) in block <unit> at -e line 1 Actually thrown at: in block <unit> at -e line 1 Why?