YWJL 2 anni fa
parent
commit
c80309d3be
1 ha cambiato i file con 10 aggiunte e 0 eliminazioni
  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)
+}