初始化Go学习项目

This commit is contained in:
liumangmang
2025-12-26 17:56:02 +08:00
commit 7f4527d501
90 changed files with 3436 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
module hello-go
go 1.22.2
BIN
View File
Binary file not shown.
+7
View File
@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, Go from Linux Mint!")
}