We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf1da2b commit e23afa6Copy full SHA for e23afa6
07-packages/strings/greeting/texts.go
@@ -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