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

14 lines
181 B
Go
Raw Normal View History

2023-09-29 10:07:31 -04:00
package main
import "fmt"
const englishHelloPrefix = "Hello, "
func Hello(name string) string {
return englishHelloPrefix + name
}
func main() {
fmt.Println(Hello("world"))
}