💻 Learn GoLang 💻
A list of Golang Code Tutorials to help you learn Golang from Scratch with simple examples.
Topics Covered
- Data Types
- Variables
- Operators
- Arrays
- Slices
- Maps
- Functions
- Pointers
- Structs
- Methods
- Interfaces
Files Structure
├───Ch01-DataTypes-AND-Variables
│ ├───HelloWorld
│ ├───Printing
│ ├───type-casting
│ ├───user-input
│ ├───variable-declaration
│ └───variables-scope
├───Ch02-Operators-and-Control-Flow
│ ├───arithmetic-operators
│ ├───assignment-operators
│ ├───bitwise-operators
│ ├───comparison-operators
│ ├───for-loops
│ ├───if-statements
│ ├───logical-operators
│ └───switch-case
├───Ch03-Arrays-Slices-Maps
│ ├───arrays
│ ├───maps
│ └───slices
├───Ch04-Functions
│ ├───anonymous-functions
│ ├───function-syntax
│ ├───high-order-functions
│ └───recursive-functions
├───Ch05-Pointers
│ ├───pointers
│ └───pointers-in-functions
└───Ch06-Struct-Methods-Interfaces
├───interfaces
├───methods
└───structs