arvelie 0.1.1

Convertors for the Arvelie date system. See https://wiki.xxiivv.com/site/arvelie.html
Documentation
1
2
3
4
5
6
7
use arvelie::to_arvelie_month_day;
use chrono::Local;

pub fn main() {
    let today = Local::now().date_naive();
    println!("{}", to_arvelie_month_day(today));
}