learn-go-with-tests/hello/hello.go
Timothy Warren 546072d1ad First commit
2023-09-29 10:07:31 -04:00

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"))
}