in reply to trouble installing module. perl cannot find functions

Date::Calc doesn't export anything by default. Use:
use Date::Calc qw /check_date/;

or

Date::Calc::check_date (2000, 5, 30);

Abigail

Replies are listed 'Best First'.
Re: Re: trouble installing module. perl cannot find functions
by Avox (Sexton) on Jun 27, 2003 at 14:01 UTC
    Abigail, that did it. Thank you so much!