Skip to content

Instantly share code, notes, and snippets.

@01x01
Last active February 1, 2019 13:48
Show Gist options
  • Save 01x01/c3320846de2b73ca50ca3e86181e092f to your computer and use it in GitHub Desktop.
Save 01x01/c3320846de2b73ca50ca3e86181e092f to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"log"
"runtime"
)
const info = `
Application %s starting.
The binary was build by Go: %s
`
func main() {
log.Printf(info,"Example",runtime.Version())
fmt.Println("Hello, playground")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment