Skip to content

Instantly share code, notes, and snippets.

@kladov
Created February 25, 2019 09:31
Show Gist options
  • Save kladov/1c0e83d4145cd8c78825dbd017010a3e to your computer and use it in GitHub Desktop.
Save kladov/1c0e83d4145cd8c78825dbd017010a3e to your computer and use it in GitHub Desktop.
Time since start
func main() {
start := time.Now()
elapsed := time.Since(start)
log.Printf("Binomial took %s", elapsed)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment