pre-commit/testing/resources/golang_hooks_repo/golang-hello-world/main.go
2023-01-13 12:42:57 -05:00

23 lines
324 B
Go

package main
import (
"fmt"
"runtime"
"github.com/BurntSushi/toml"
"os"
)
type Config struct {
What string
}
func main() {
message := runtime.Version()
if len(os.Args) > 1 {
message = os.Args[1]
}
var conf Config
toml.Decode("What = 'world'\n", &conf)
fmt.Printf("hello %v from %s\n", conf.What, message)
}