/helloworld

Golang Package of "Hello World"

Primary LanguageGoApache License 2.0Apache-2.0

Hello World Golang Package


Example Usage

main.go

package main
 
import (
    "fmt"
    "github.com/yangpeng-chn/helloworld"
)
 
func main() {
    exa := test.Example{
        Text: "World",
    }
    fmt.Printf("Hello %s\n", exa.Hello())
}
$ go run main.go
Hello World