mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-25 13:47:19 +00:00
17 lines
201 B
Go
17 lines
201 B
Go
|
package method
|
||
|
|
||
|
// X is some type.
|
||
|
type X struct {
|
||
|
a int
|
||
|
}
|
||
|
|
||
|
// GetA returns the value of a.
|
||
|
func (x X) GetA() int {
|
||
|
return x.a
|
||
|
}
|
||
|
|
||
|
// NewX creates a new X instance.
|
||
|
func NewX() X {
|
||
|
return X{a: 42}
|
||
|
}
|