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

15
ch2/3/ch3_2.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import "fmt"
func main() {
var b byte = 255
var smallI int32 = 2147483647
var bigI uint64 = 18446744073709551615
b += 1
smallI += 1
bigI += 1
fmt.Println(b)
fmt.Println(smallI)
fmt.Println(bigI)
}