初始化

This commit is contained in:
2025-04-08 17:01:19 +08:00
commit 4228f447f7
75 changed files with 574 additions and 0 deletions

3
03_std_lib/01_fmt/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module fmt
go 1.23.5

BIN
03_std_lib/01_fmt/main.go Normal file

Binary file not shown.

3
03_std_lib/02_os/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module os
go 1.21

5
03_std_lib/02_os/main.go Normal file
View File

@@ -0,0 +1,5 @@
package main
func main() {
// TODO
}

3
03_std_lib/03_io/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module io
go 1.21

5
03_std_lib/03_io/main.go Normal file
View File

@@ -0,0 +1,5 @@
package main
func main() {
// TODO
}

View File

@@ -0,0 +1,3 @@
module net_http
go 1.21

View File

@@ -0,0 +1,5 @@
package main
func main() {
// TODO
}

View File

@@ -0,0 +1,3 @@
module encoding_json
go 1.21

View File

@@ -0,0 +1,5 @@
package main
func main() {
// TODO
}

View File

@@ -0,0 +1,3 @@
module testing
go 1.21

View File

@@ -0,0 +1,5 @@
package main
func main() {
// TODO
}