Files
moxa/_test/export1.go
2019-03-28 17:38:51 +01:00

11 lines
130 B
Go

package sample
type Sample struct{ Name string }
func (s *Sample) Test() {
println("Hello from test", s.Name)
}
// Output:
//