🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
go.mod ``` module hello go 1.18 ``` hello.go ``` package main import (     m "hello/model"//m为别名,可以不加 ) func main() {     u1 := m.User{         Age:  100,         Name: "u1",     }     u1.ToString() } ``` model/user.go ``` package model import "fmt" type User struct {     Age  int     Name string } func (u User) ToString() {     fmt.Printf("Name=%s Age=%d\n", u.Name, u.Age) } ```