首次提交

This commit is contained in:
2025-11-15 16:16:19 +00:00
parent c319ac0752
commit fdbb61844c
2 changed files with 15 additions and 0 deletions

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module gitea.ww3.tw/skimrme/go_test
go 1.22.12

12
main.go Normal file
View File

@@ -0,0 +1,12 @@
// 测试打印 Hello World
package main
import "fmt"
func main() {
fmt.Printf("\nHello World\n") // 划重点print的p要大写
}