Hi all,

What is the diff between

use Carp qw(cluck);
Carp::cluck("hello");

and

use Carp;
Carp::Cluck("hello");


I had assumed that when I 'use Carp qw ( cluck )' I will be able to use only the cluck function of Carp but when I tried it out I found it was not so. Then where does the difference lie.


Thanks
Ram






-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to