首次提交:初始化项目代码

This commit is contained in:
sunct
2026-07-31 15:18:32 +08:00
commit d6393266b0
193 changed files with 14287 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import "encoding/json"
type User2 struct {
Name string `json:"name"`
Age int `json:"age"`
}
func main() {
u := User2{"小红", 18}
json.Marshal(u)
}