On 11/12/24 22:30, ToddAndMargo via perl6-users wrote:
On 11/12/24 22:20, ToddAndMargo via perl6-users wrote:
Hi All,
Windows 11-24H4 Pro
After upgrading to
RakudoMoar-2024.10.01-win-x86_64-msvc.msi
from
RakudoMoar-2022.06.01-win-x86_64-msvc.msi
I am throwing this error:
Intern
Hi All,
Windows 11-24H4 Pro
After upgrading to
RakudoMoar-2024.10.01-win-x86_64-msvc.msi
from
RakudoMoar-2022.06.01-win-x86_64-msvc.msi
I am throwing this error:
Internal error: unhandled target type
in method AT-POS
at C:
\R
Hi All,
How do I do a binary write to the STDOUT?
-T
On 11/12/24 19:52, ToddAndMargo via perl6-users wrote:
C:\NtUtil>raku -MTerminal::ANSIColor -e "say color('bold'), 'hello',
color('reset')"
←[1mhello←[0m
Interesting. This works
echo ^[[32m HI ^[[0m
where `^[` is generated with ``
I do believe that the ESC `chr(27)` is not being literall
C:\NtUtil>raku -MTerminal::ANSIColor -e "say color('bold'), 'hello',
color('reset')"
←[1mhello←[0m
Interesting. This works
echo ^[[32m HI ^[[0m
where `^[` is generated with ``
I do believe that the ESC `chr(27)` is not being literally
sent to the screen. Raku is intercepting it.
raku