I'm running Go version 1.3 on Windows 7x64. After I run the following code I always get 2009-11-10 23:00:00 +0000 UTC. package main import ( "fmt" "time" ) func main() { fmt.Println(time.Now()) } I know that Go Playground has this fixed time for a reason, but I don't understand why I got this date in my box. UPDATE: I solved this issue by upgrading the Go version from 1.2.2 to 1.3. When I tried to
