Files
headfirstgo/chapter4/greeting/greeting.go
2025-01-30 12:04:39 +03:00

12 lines
107 B
Go

package greeting
import "fmt"
func Hello() {
fmt.Println("Hello!")
}
func Hi() {
fmt.Println("Hi!")
}