We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e552b47 commit bf1da2bCopy full SHA for bf1da2b
07-packages/myapp/app.go
@@ -4,14 +4,14 @@ import (
4
"fmt"
5
"github.com/callicoder/golang-tutorials/07-packages/numbers"
6
"github.com/callicoder/golang-tutorials/07-packages/strings"
7
- "github.com/callicoder/golang-tutorials/07-packages/strings/greetings" // Importing a nested package
+ "github.com/callicoder/golang-tutorials/07-packages/strings/greeting" // Importing a nested package
8
str "strings" // Package Alias
9
)
10
11
func main() {
12
fmt.Println(numbers.IsPrime(19))
13
14
- fmt.Println(greetings.WelcomeText)
+ fmt.Println(greeting.WelcomeText)
15
16
fmt.Println(strings.Reverse("callicoder"))
17
07-packages/strings/greetings/texts.go
0 commit comments