Repository to learn go-programming. The code in this repository is divided in multiple packages and has been imported to the main package (main.go) in src directory.
- Code to print hello-world (the very basic stuff for any new language we learn)
- Code to demonstrate how zero values work in Go
- Code to explore various Types available in Go
- Code to explore Constants in Go
- Code to explore special type iota
- Code to explore Conditional statements in Go
- Code to explore Slices in Go (Using Arrays directly is not recommended to avoid overhead)
- Code to explore maps in Go.
- Code to explore Structs in Go.