Created
March 8, 2022 18:21
-
-
Save percybolmer/acee7e064243bb18b95fe4d520507a2d to your computer and use it in GitHub Desktop.
LD Flags program example
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
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