Template and reorganization

This commit is contained in:
Teiva Harsanyi 2022-08-17 15:50:17 +02:00
parent 0c13b1e8a2
commit 3e133d2bce
No known key found for this signature in database
GPG key ID: 421EF65C3FD2F93C

View file

@ -8,6 +8,18 @@ Source code and community space of [100 Go Mistakes and How to Avoid Them](https
## Go Mistakes
* [Code and Project Organization](#code-and-project-organization)
* [Data Types](#data-types)
* [Control Structures](#control-structures)
* [Strings](#strings)
* [Functions and Methods](#functions-and-methods)
* [Error Management](#error-management)
* [Concurrency: Foundations](#concurrency-foundations)
* [Concurrency: Practice](#concurrency-practice)
* [Standard Library](#standard-library)
* [Testing](#testing)
* [Optimizations](#optimizations)
### Code and Project Organization
#### Unintended variable shadowing (#1)