github.com/acornpublishing/functional-programming-go@v0.0.0-20220401005601-c3bd3786d5a1/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  }