github.com/m4gshm/gollections@v0.0.13-0.20240331203319-a34a86e58a24/internal/examples/sliceexamples/data_users_test.go (about)

     1  package sliceexamples
     2  
     3  // see the User structure above
     4  var users = []User{
     5  	{name: "Bob", age: 26},
     6  	{name: "Alice", age: 35},
     7  	{name: "Tom", age: 18},
     8  	{name: "Chris", age: 41},
     9  }