# 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)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information, you can query the documentation dynamically by asking a question.
Perform an HTTP GET request on a page URL with the `ask` query parameter:
```
GET https://book.codewithgo.com/master.md?ask=<question>
```
The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.
Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
