in reply to How do I use date::calc in a efficient way

If you do not care about namespace collisions, you can just use the :all tag to import all symbols:
use Date::Calc qw(:all);

Generally, it is better practice to only import the functions you need:

use Date::Calc qw(check_date Add_Delta_Days);

Replies are listed 'Best First'.
Re^2: How do I use date::calc in a efficient way
by rakheek (Sexton) on Apr 13, 2010 at 18:14 UTC
    Thank you Monk. That was exactly what I was looking for. I will import only the functions I need. Regards, Rakhee