diff --git a/www/content/environment.md b/www/content/environment.md index b79003a18..1bcc6dc44 100644 --- a/www/content/environment.md +++ b/www/content/environment.md @@ -109,10 +109,11 @@ var ( version = "dev" commit = "none" date = "unknown" + builtBy = "unknown" ) func main() { - fmt.Printf("%v, commit %v, built at %v", version, commit, date) + fmt.Printf("my app %s, commit %s, built at %s by %s", version, commit, date, builtBy) } ```