Re: Is there a Terminal::ANSIcolor for Windows?
[email protected] (Will Coleda)
| Newsgroups | perl.perl6.users |
|---|---|
| Message-ID | <CAKfi5MdpBJBmfeOH0S9OMk3vd+qV5kmwcH9JVQ7GDxM4na9sMA@mail.gmail.com> |
Works for me on windows 11 using the x64 Native Tools Command Prompt for VS
2019, git bash, powershell...
raku -MTerminal::ANSIColor -e "say color('bold'), 'hello', color('reset')"
Just prints a bold hello.
I'm on raku 2024.07, OS Version 10.0.22631 N/A Build 22631,
Terminal::ANSIColor:ver<0.9>:auth<zef:lizmat>
What shell are you using, what versions of Raku, etc.?
On Tue, Nov 5, 2024 at 2:54 AM ToddAndMargo via perl6-users <
[email protected]> wrote:
> Windows 11 24H2
> RakudoΓäó v2024.07
>
> [0] > use Terminal::ANSIColor; # qx[ color ];
> Nil
>
> [1] > print color('bold'), color('52'), "abc", color('reset');
> ←[1m←[38;5;52mabc←[0m[1] >
>
> [1] > print color('bold'), color('red'), "abc", color('reset');
> ←[1m←[31mabc←[0m[1] >
>