gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/example/getfunc/_gopath/src/github.com/foo/bar/foobar.go (about)

     1  package bar
     2  
     3  type Foo struct {
     4  	A string
     5  }
     6  
     7  func NewFoo() *Foo {
     8  	return &Foo{A: "test"}
     9  }