in reply to Term::ANSIColor - possible to pass color as variable?

How about this?
use warnings; use strict; use Term::ANSIColor qw(:constants); sub print_debug { print STDERR @_, RESET; } print_debug(BLUE ON_WHITE, 'Test');

Replies are listed 'Best First'.
Re^2: Term::ANSIColor - possible to pass color as variable?
by ultranerds (Hermit) on Apr 13, 2011 at 13:31 UTC
    Ah nice - that did the trick - thanks!

    Andy