go_study/helloworld/hello/hello.go

12 lines
134 B
Go

package main
import (
"example.com/greetings"
"fmt"
)
func main() {
message := greetings.Hello("Gladys")
fmt.Println(message)
}