Untitled
Anonymous
golang
12/16/2022 6:54 PM
116 B
16
Indexable
type Vehicle struct {
Seats int
Color string
}
type Car struct {
Vehicle
}Editor is loading...
type Vehicle struct {
Seats int
Color string
}
type Car struct {
Vehicle
}