...

Source file src/github.com/urfave/cli/v2/internal/example-hello-world/example-hello-world.go

Documentation: github.com/urfave/cli/v2/internal/example-hello-world

     1  // example hello world used for binary size checking
     2  
     3  package main
     4  
     5  import "fmt"
     6  
     7  func main() {
     8  	fmt.Println("hello world")
     9  }
    10  

View as plain text