Its a series of short Go tutorials to help me learn the language step-by-step.
- Location:
cmd/1.Basics/main.go
- Overview: Introduces Go basics: variables, types, constants, and more.
go run cmd/1.Basics/main.go
- Location:
cmd/2.FuncAndCtrlStructures/main.go
- Overview: Explores functions, error handling, and control structures (if-else and switch statements).
go run cmd/2.FuncAndCtrlStructures/main.go
- Location:
cmd/3.Arrays_Slices_Maps/main.go
- Overview: Explores arrays, slices, maps, and loops in Go.
go run cmd/3.Arrays_Slices_Maps/main.go
- Location:
cmd/4.Strings_Bytes_Runes/main.go
- Overview: Explores Strings, Runes, and Bytes in Go.
go run cmd/4.Strings_Bytes_Runes/main.go
- Location:
cmd/5.Structs_Interface/main.go
- Overview: Explores Structs and Interfaces in Go.
go run cmd/5.Structs_Interface/main.go
- Location:
cmd/6.Pointers/main.go
- Overview: Explores Pointers in Go.
go run cmd/6.Pointers/main.go