github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/method7.gno (about)

     1  package main
     2  
     3  type Sample struct {
     4  	Name string
     5  }
     6  
     7  func (s *Sample) foo(i int) {
     8  	println("in foo", s.Name, i)
     9  }
    10  
    11  var samples = []Sample{
    12  	{"hello"},
    13  }
    14  
    15  func main() {
    16  	samples[0].foo(3)
    17  }
    18  
    19  // Output:
    20  // in foo hello 3