12 lines
134 B
Go
12 lines
134 B
Go
package main
|
|
|
|
import (
|
|
"example.com/greetings"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
message := greetings.Hello("Gladys")
|
|
fmt.Println(message)
|
|
}
|