Explorar el Código

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

fengchun_yuan hace 2 años
padre
commit
d98e882560
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  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)
+}