On Sun, Feb 26, 2017 at 8:14 PM, ToddAndMargo <toddandma...@zoho.com> wrote:

> Speaking of syntax errors, what is wrong with these
> two lines (not used a the same time)?
>
> use Terminal::ANSIColor qw[ color ];
> use Terminal::ANSIColor::color;
>

The first one attempts to import a symbol "color" from the module
"Terminal::ANSIColor".
The second attempts to import all (or default export) symbols from the
module "Terminal::ANSIColor::color", which doesn't exist.

-- 
brandon s allbery kf8nh                               sine nomine associates
allber...@gmail.com                                  ballb...@sinenomine.net
unix, openafs, kerberos, infrastructure, xmonad        http://sinenomine.net

Reply via email to