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

12
ch4/3/ch4_3.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import "fmt"
func main() {
var total int
for i := 0; i < 10; i++ {
total = total + i
fmt.Println(total)
}
fmt.Println(total)
}