NAME

Date::Discordian - Calculate the Discordian date of a particular day

SYNOPSIS

use Date::Discordian;
$discordian = discordian(time);
($season, $day, $day_of_week) = discordian(time);

DESCRIPTION

Calculate the Discordian date of a particular 'real' date.

Date::Discordian exports just one function - discordian() - which, when given a time value, returns either a list of the Discordian season, day of that season, and the day of the week, or a single string of those values, depending on context.

I'm really not sure how this would ever be used, so if you actually use this, send me a note.

Bugs/To Do

Does not handle leap years at all. In fact, it's really not working correctly now. It's off by a day. Sort of. It appears to work, because 2000 is a leap year.

Also, I'd like for it to be able to return the various Holydays in some useful fashion, ala ddate.

AUTHOR

Rich Bowen <rbowen@rcbowen.com>