Interface and method in Golang

后端 未结 0 1875
有刺的猬
有刺的猬 2020-11-29 21:51
type Node interface {
    TokenLiteral() string
}
type Statement interface {
    Node
    statementNode()
}
type Program struct{
    Statements []Statement
}
func (p         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题