8 lines
115 B
Go
8 lines
115 B
Go
package sample
|
|
|
|
type Sample struct{ Name string }
|
|
|
|
func (s *Sample) Test() {
|
|
println("Hello from test", s.Name)
|
|
}
|