2
0
mirror of synced 2025-02-24 07:18:15 +00:00

9 lines
140 B
Go
Raw Normal View History

// Package hi provides a function for saying hello.
package hi
import "fmt"
func Hello(name string) {
fmt.Printf("Hello, %s!\n", name)
}