Logo

Programming-Idioms

History of Idiom 61 > diff from v8 to v9

Edit summary for version 9 by :

Version 8

2015-08-20, 11:23:06

Version 9

2015-08-20, 11:26:53

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Imports
extern crate time;
Code
let d=time::now();
Comments bubble
The current time in the local timezone in this format: http://doc.rust-lang.org/time/time/struct.Tm.html