Skip to content

Commit e23afa6

Browse files
author
Rajeev Kumar Singh
committed
renamed package
1 parent bf1da2b commit e23afa6

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

07-packages/strings/greeting/texts.go

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Nested Package
2+
package greeting
3+
4+
// Exported
5+
const (
6+
WelcomeText = "Hello, World to Golang"
7+
MorningText = "Good Morning"
8+
EveningText = "Good Evening"
9+
)
10+
11+
// Not exported (only visible inside the `greeting` package)
12+
var loremIpsumText = `Lorem ipsum dolor sit amet, consectetur adipiscing elit,
13+
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
14+
minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
15+
commodo consequat.`

0 commit comments

Comments
 (0)