RosettaCodeData/Task/Show-the-epoch/Rust/show-the-epoch.rs
2024-10-16 18:07:41 -07:00

8 lines
147 B
Rust

extern crate time;
use time::{at_utc, Timespec};
fn main() {
let epoch = at_utc(Timespec::new(0, 0));
println!("{}", epoch.asctime());
}