Go Struct Examples
If you know C then Go structs will seem similar
type Car struct {
nrWheels int
speed int
name string
}
If you know C then Go structs will seem similar
type Car struct {
nrWheels int
speed int
name string
}