Skip to content

Instantly share code, notes, and snippets.

@Mistobaan
Created August 7, 2013 01:05
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 Mistobaan/6170355 to your computer and use it in GitHub Desktop.
Save Mistobaan/6170355 to your computer and use it in GitHub Desktop.
// Provided by package runtime.
func now() (sec int64, nsec int32)
// Now returns the current local time.
func Now() Time {
sec, nsec := now()
return Time{sec + unixToInternal, nsec, Local}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment