RosettaCodeData/Task/Show-the-epoch/Rust/show-the-epoch.rust
2015-11-18 06:14:39 +00:00

8 lines
147 B
Text

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