====== Golang ====== * https://pkg.go.dev/ * https://go.dev/doc/tutorial/random-greeting * https://go.dev/doc/tutorial/compile-install | func init() { } | Go executes init functions automatically at program startup, after global variables have been initialized. For more about init functions, see [[https://go.dev/doc/effective_go.html#init|Effective Go]]. | | go list -f '{{.Target}}' | Discover the Go install path |