Files
hello/hello.go
2026-03-19 20:08:03 +03:00

12 lines
169 B
Go

package hello
import "fmt"
func Hello(name string) string {
return fmt.Sprintf("Hello, %s!", name)
}
func SayHello(name string) {
fmt.Printf("%s\n", Hello(name))
}