1package main 2 3import ( 4 "fmt" 5 6 "example.com/lib" 7) 8 9func main() { 10 fmt.Printf("Hello %s!", lib.Name()) 11} 12