17 lines
170 B
Go
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() {
|
|
|
|
}
|