exercism-solutions/rust/gigasecond/src/lib.rs

7 lines
202 B
Rust
Raw Normal View History

2023-10-11 10:59:06 -05:00
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}");
}