Browse Source

Merge branch 'master' of http://gogs.mkyr.fun:99/YWJL/GoLearn into master

fengchun_yuan 2 năm trước cách đây
mục cha
commit
d98e882560
1 tập tin đã thay đổi với 10 bổ sung0 xóa
  1. 10 0
      Go语言核心36讲/10/main.go

+ 10 - 0
Go语言核心36讲/10/main.go

@@ -0,0 +1,10 @@
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("Hello, world!")
+	test := make([]int, 3)
+	test2 := []int{}
+	fmt.Println(test, test2)
+}