Last active
October 19, 2022 14:12
-
-
Save BumpeiShimada/6f0f69b310514070aea7524df3b0dad4 to your computer and use it in GitHub Desktop.
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
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
now := time.Now() | |
time.Sleep(time.Second * 3) | |
elapsed := time.Since(now) | |
fmt.Printf("Took %s", elapsed) // Output: Took 3s | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment