Created
February 25, 2019 09:31
-
-
Save kladov/1c0e83d4145cd8c78825dbd017010a3e to your computer and use it in GitHub Desktop.
Time since start
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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