learning_go/headFirst/third/sub/sub.go
2025-08-26 19:45:51 +03:00

13 lines
187 B
Go

package sub
import "fmt"
func Hi() {
fmt.Println("Hi from sub pkg")
}
// Hello() just prints out another version of greeting
func Hello() {
fmt.Println("Hello from sub package!!")
}