We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35237b3 commit 3a7222dCopy full SHA for 3a7222d
.gitignore
@@ -0,0 +1,21 @@
1
+# 1、忽略IDE
2
+
3
+# User-specific stuff
4
+.idea/
5
6
+# 2、忽略Go语言
7
+# Binaries for programs and plugins
8
+*.exe
9
+*.exe~
10
+*.dll
11
+*.so
12
+*.dylib
13
14
+# Test binary, built with `go test -c`
15
+*.test
16
17
+# Output of the go coverage tool, specifically when used with LiteIDE
18
+*.out
19
20
+# Dependency directories (remove the comment below to include it)
21
+# vendor/
go.mod
@@ -0,0 +1,3 @@
+module GoLanguagePrograming
+go 1.18
main.go
@@ -0,0 +1,12 @@
+package main
+import "fmt"
+func runChapter1() {
+ fmt.Println("hello world")
+}
+func main() {
+ runChapter1()
0 commit comments