learn-go-with-tests/hello/hello.go

14 lines
181 B
Go

package main
import "fmt"
const englishHelloPrefix = "Hello, "
func Hello(name string) string {
return englishHelloPrefix + name
}
func main() {
fmt.Println(Hello("world"))
}