urfave-cli/internal/example-hello-world/example-hello-world.go
2020-02-29 14:03:02 -08:00

10 lines
126 B
Go

// example hello world used for binary size checking
package main
import "fmt"
func main() {
fmt.Println("hello world")
}