Logo

Programming-Idioms

History of Idiom 61 > diff from v14 to v15

Edit summary for version 15 by :

Version 14

2015-08-20, 18:41:10

Version 15

2015-08-21, 23:29:27

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 wraps a timestamp with nanosecond precision.
Comments bubble
The type Time wraps a timestamp with nanosecond precision.
Doc URL
http://golang.org/pkg/time/#Now
Origin
http://golang.org/pkg/time/#Now
Demo URL
https://play.golang.org/p/7BGpsxcbzf
Demo URL
https://play.golang.org/p/7BGpsxcbzf