# Code With Go

## Code With Go

- [Code With Go](https://book.codewithgo.com/master.md): Build everything with Go!
- [01. What, Who, Why and Where?](https://book.codewithgo.com/what-who-why-and-where.md): Where Go is used
- [02. Compiled vs Interpreted languages](https://book.codewithgo.com/compiled-vs-interpreted-languages.md)
- [03. Types of Type!](https://book.codewithgo.com/types-of-type.md): Because type is life!
- [04. Stack and Heap Memory](https://book.codewithgo.com/stack-and-heap-memory.md): A simple comparison
- [05. Garbage Collection](https://book.codewithgo.com/garbage-collection.md): Cleaning up!
- [06. About Go](https://book.codewithgo.com/about-go.md): A Brief introduction to Go
- [07. Go Playground](https://book.codewithgo.com/go-playground.md): Run without installing!
- [08. Hello, World!](https://book.codewithgo.com/program-structure.md)
- [09. Installing Go](https://book.codewithgo.com/installing-go.md)
- [10. Variables](https://book.codewithgo.com/variables.md): Naming memory locations
- [11. Constants](https://book.codewithgo.com/constants.md): Can not change me
- [12. Integers](https://book.codewithgo.com/integers.md): Using Natural Numbers
- [12. Floats](https://book.codewithgo.com/floats.md)
- [13. Boolean](https://book.codewithgo.com/boolean.md)
- [14. Strings](https://book.codewithgo.com/strings.md)
- [15. Complex Numbers](https://book.codewithgo.com/complex-numbers.md)
- [16. If Else](https://book.codewithgo.com/if-else.md): Control the flow
- [17. Switch](https://book.codewithgo.com/switch-statement.md)
- [18. For](https://book.codewithgo.com/loops-for-statement.md): Running Loops
- [19. User Defined Types](https://book.codewithgo.com/user-defined-types.md)
- [20. Arrays](https://book.codewithgo.com/arrays.md): collecting similar data
- [21. Slices](https://book.codewithgo.com/slices.md): A window into an array!
- [22. Structs](https://book.codewithgo.com/structs.md): Working with different types together
- [23. Maps](https://book.codewithgo.com/maps.md): Let's navigate!
- [24. Functions](https://book.codewithgo.com/what-are-functions.md)
- [25. Defer](https://book.codewithgo.com/defer.md): Wait Until I am done!
- [26. Pointers](https://book.codewithgo.com/pointers.md): Sharing!
- [27. Methods](https://book.codewithgo.com/methods.md): Functions on type
- [Resources - Paid](https://book.codewithgo.com/resources/resources-paid.md): Awesome Go Resources
- [Resources - Free](https://book.codewithgo.com/resources/resources-free.md)
