urfave-cli/internal/example-hello-world/example-hello-world.go

10 lines
126 B
Go
Raw Normal View History

2020-02-29 22:03:02 +00:00
// example hello world used for binary size checking
2020-02-29 22:00:26 +00:00
package main
import "fmt"
func main() {
fmt.Println("hello world")
}