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

BIN
ch2/1/ch2.exe Normal file

Binary file not shown.

View File

@@ -0,0 +1,10 @@
package main
import "fmt"
func main() {
var i int64 = 20
var f float64 = float64(i)
fmt.Println(i)
fmt.Println(f)
}

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

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