# New Ticket Created by Dan Zwell # Please include the string: [perl #132441] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=132441 >
Note: results are from Windows 10. Same results from CMD and from Cmder. Rakudo version 2017.09-355-g27131ed8d built on MoarVM version 2017.09.1-575-gd4e230a6 Working: perl6 -e "<a b>».say" # output is as expected But in the REPL, I tried to run: > <a b>».say Without Linenoise installed, Rakudo endlessly repeats "> Decoder may not be used concurrently" With Linenoise installed, I get this error: Malformed UTF-8 at line 1 col 6 in sub nativecast at D:\rakudo\share\perl6\sources\51E302443A2C8FF185ABC10CA1E5520EFEE885A1 (NativeCall::Types) line 5 in method deref at D:\rakudo\share\perl6\sources\51E302443A2C8FF185ABC10CA1E5520EFEE885A1 (NativeCall::Types) line 58 in sub linenoise at D:\rakudo\share\perl6\site\sources\0BDF8C54D33921FEA066491D8D13C96A7CB144B9 (Linenoise) line 86 I got similar error when using these characters as quoting operators, such as: q«text». Note: the obvious workaround is to substitute "<<" and ">>" for "«" and "»".