in reply to Date::Calc on Windows

It looks like you wrote
my @date = Time_to_Date([$time]);
but that should be
my @date = Time_to_Date($time);
because Time_to_Date wants a scalar number, not an array reference…

Replies are listed 'Best First'.
Re^2: Date::Calc on Windows
by Anonymous Monk on May 17, 2023 at 18:00 UTC
    Thank you!!