github.com/packtpublishing/learning-functional-programming-in-go@v0.0.0-20230130084745-8b849f6d58c4/Appendix/03_with-third-party-import/src/packageb/featureb.go (about) 1 package packageb 2 3 import ( 4 "fmt" 5 ) 6 7 func Btask() { 8 fmt.Println("B") 9 }