doomsday 0.3.0

An implementation of Conway's doomsday algorithm.
Documentation
1
2
3
4
5
6
7
8
use doomsday::*;

fn main() {
    let dd = Doomsday(1937);
    println!("{:?} is {}, anchor in February on {}",
             dd, dd.day(), dd.anchor(February));
}