Logo

Programming-Idioms

History of Idiom 61 > diff from v13 to v14

Edit summary for version 14 by :

Version 13

2015-08-20, 18:29:55

Version 14

2015-08-20, 18:41:10

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