YWJL %!s(int64=2) %!d(string=hai) anos
pai
achega
c80309d3be
Modificáronse 1 ficheiros con 10 adicións e 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)
+}