Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created March 8, 2022 18:21
Show Gist options
  • Save percybolmer/acee7e064243bb18b95fe4d520507a2d to your computer and use it in GitHub Desktop.
Save percybolmer/acee7e064243bb18b95fe4d520507a2d to your computer and use it in GitHub Desktop.
LD Flags program example
package main
import "log"
var (
version = "0.0.1"
runner = "client-1.0.0"
)
func main() {
log.Println("Starting runner", runner, "version", version)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment