Before moving on, establish these habits:
- Run go fmt on every save. Configure your editor to do this automatically.
- Run go vet before committing. It catches bugs the compiler misses.
- Read error messages carefully. They tell you exactly where and what went wrong.
- Keep names short but clear. Follow Go conventions.
- Start simple. You don't need complex project structures yet.