9 lines
147 B
Text
9 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());
|
||
|
|
}
|