gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/export1.go (about) 1 package sample 2 3 type Sample struct{ Name string } 4 5 func (s *Sample) Test() { 6 println("Hello from test", s.Name) 7 } 8 9 // Output: 10 //