Code:
	use Win32::Console::ANSI;
use Term::ANSIScreen qw/:color /;
print colored ("This text is bold green.\n", 'bold green');
print "This text is normal.\n";
print colored ['bold red'], "This text is bold red.\n";
print "This text is normal.\n";
Leave a comment: