gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/d1/d1.go (about)

     1  package d1
     2  
     3  type T struct {
     4  	Name string
     5  }
     6  
     7  func (t *T) F() { println(t.Name) }
     8  
     9  func NewT(s string) *T { return &T{s} }