4.3 符号解析
// file: $GCROOT/compile/internal/syntax/nodes.go
type Name struct {
Value string
expr
}
import "fmt"
type A struct{}
func main() {
var a A
name := "Golang"
fmt.Printf("%v-%s\n", a, name)
}
最后更新于
// file: $GCROOT/compile/internal/syntax/nodes.go
type Name struct {
Value string
expr
}
import "fmt"
type A struct{}
func main() {
var a A
name := "Golang"
fmt.Printf("%v-%s\n", a, name)
}
最后更新于