Files
learning_go/ch7/1/ch7_1.go
2026-02-21 14:09:13 +03:00

17 lines
170 B
Go

package main
type Team struct {
Name string
Players []string
}
type League struct {
name string
Teams map[string]Team
Wins map[string]int
}
func main() {
}