Created
October 26, 2018 02:40
-
-
Save bookmebus/a9112911b852b108216469b62bcdff52 to your computer and use it in GitHub Desktop.
String interpolation
This file contains hidden or 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
// import format | |
import ( "fmt" ) | |
date := fmt.Sprintf("%d-%d-%d", year, month, day) | |
time := fmt.Sprintf("%d:%d:%d", hour, minute, second) | |
datetime := fmt.Sprintf("%s,%s", date, time) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment