dates-le 0.1.0

Find every date and timestamp in a codebase, and the instant each one resolves to
Documentation
1
2
3
4
5
6
use std::process::ExitCode;

fn main() -> ExitCode {
    let arguments: Vec<String> = std::env::args().skip(1).collect();
    dates_le::run(&arguments)
}