in reply to Re^2: Date::Manip::Recur is not returning a list
in thread Date::Manip::Recur is not returning a list

print "The date is $i->value<p>";

Method calls don't interpolate.  You're interpolating just the value of $i (which is an object/hashref), and the "->value" prints as is. Try

print "The date is ", $i->value, "<p>";

Replies are listed 'Best First'.
Re^4: Date::Manip::Recur is not returning a list
by desertrat (Sexton) on Jun 24, 2010 at 22:38 UTC

    Ah, thank you sensei!