push all exercices

This commit is contained in:
lbenedar
2026-02-21 14:09:13 +03:00
commit a94d994b8c
72 changed files with 787 additions and 0 deletions

16
ch7/1/ch7_1.go Normal file
View 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() {
}

3
ch7/1/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module ch7_1
go 1.25.0