Do you remember gophers? Those very cute mice? There is a Go library featuring them. They talk in that Golang library
Run this command:
go get https://github.com/ManiProjs/gophersays@latest
// Here is your package name with syntax: package <packagename> | Here we use 'main'
package main
import ("fmt", "gophersays")
// Main function
func main() {
gophersays.say("Hello")
}