Logo

Programming-Idioms

History of Idiom 61 > diff from v1 to v2

Edit summary for version 2 by :

Version 1

2015-04-14, 21:13:48

Version 2

2015-04-14, 21:22:07

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
import "time"
Imports
import "time"
Code
var d time.Time = time.Now()
Code
var d time.Time = time.Now()
Comments bubble
The type time.Time wraps a timestamp with nanosecond precision.
Comments bubble
The type time.Time wraps a timestamp with nanosecond precision.
Origin
http://golang.org/pkg/time/#Now
Demo URL
https://play.golang.org/p/7BGpsxcbzf
Demo URL
https://play.golang.org/p/7BGpsxcbzf