浏览代码

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

fengchun_yuan 2 年之前
父节点
当前提交
d98e882560
共有 1 个文件被更改,包括 10 次插入0 次删除
  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)
+}