summaryrefslogtreecommitdiff
path: root/rust/gigasecond/src/lib.rs
blob: 2dbb9ab9a118c533064d58281c6dc0ebae435dac (plain)
1
2
3
4
5
6
use time::PrimitiveDateTime as DateTime;

// Returns a DateTime one billion seconds after start.
pub fn after(start: DateTime) -> DateTime {
    todo!("What time is a gigasecond later than {start}");
}