YWJL 2 년 전
부모
커밋
c80309d3be
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)
+}