perlsen has asked for the wisdom of the Perl Monks concerning the following question:
Hi monks, I have started the Term::ANSIColor
module. But it cannot responds what i expect.
How to format the code to view screen visual output(what i expected).
I have tried this in command prompt.
use Term::ANSIColor qw(:constants); print BLACK, ON_WHITE, "black on white\n"; print WHITE, ON_BLACK, "white on black\n"; print GREEN, ON_CYAN, BLINK, "garish!\n"; print RESET; output in screen: D:\sample>tes1.pl ?[30m?[47mblack on white ?[37m?[40mwhite on black ?[32m?[46m?[5mgarish! ?[0m
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to use Term::ANSIColor module?.
by BrowserUk (Patriarch) on Feb 10, 2005 at 08:10 UTC | |
by perlsen (Chaplain) on Feb 10, 2005 at 08:59 UTC | |
by Anonymous Monk on Apr 05, 2012 at 07:45 UTC | |
by BrowserUk (Patriarch) on Apr 05, 2012 at 11:34 UTC | |
|
Re: How to use Term::ANSIColor module?.
by cowboy (Friar) on Feb 10, 2005 at 07:33 UTC |