Skip to content

Instantly share code, notes, and snippets.

/log

Created May 8, 2014 12:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7bdc0e9ce839e4d51052 to your computer and use it in GitHub Desktop.
Save anonymous/7bdc0e9ce839e4d51052 to your computer and use it in GitHub Desktop.
go 1.2 & 1.3
# ref: https://gist.github.com/anonymous/6a895ca27c0ca98aa0df#file-go_version-go
>>> $ go version
go version go1.2.1 linux/amd64
>>> $ go build go_version.go
>>> $ time ./go_version > /dev/null
real 0m4.556s
user 0m2.227s
sys 0m2.322s
>>> $ go version
go version devel +e473e77e84ff Wed May 07 13:17:10 2014 -0700 linux/amd64
>>> $ go build go_version.go
>>> $ time ./go_version > /dev/null
real 0m1.097s
user 0m0.847s
sys 0m0.253s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment