首次提交

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

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要大写
}