krosty has asked for the wisdom of the Perl Monks concerning the following question:
But I'm not seeing the colored outputs when the print command is in a sub which is in one of the called files. The print from the sub in the main file is working. I'm using the latest ActivePerl community edition.$CONSOLE = Win32::Console->new(STD_OUTPUT_HANDLE); #in main $attr = $CONSOLE->Attr(); # Get current console colors $CONSOLE->Attr($FG_RED | $BG_BLACK); # red text on black print "Hello world!\n"; $CONSOLE->Attr($attr); # Set console colors back to original
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32::Console issue
by Anonymous Monk on Nov 14, 2012 at 04:04 UTC | |
|
Re: Win32::Console issue
by Anonymous Monk on Nov 14, 2012 at 15:00 UTC |