push all exercices
This commit is contained in:
16
ch7/1/ch7_1.go
Normal file
16
ch7/1/ch7_1.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package main
|
||||
|
||||
type Team struct {
|
||||
Name string
|
||||
Players []string
|
||||
}
|
||||
|
||||
type League struct {
|
||||
name string
|
||||
Teams map[string]Team
|
||||
Wins map[string]int
|
||||
}
|
||||
|
||||
func main() {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user