https://github.com/brivan-26/letsgo
LetsGO: my journey on learning GO in 30 days
https://github.com/brivan-26/letsgo
Last synced: 6 months ago
JSON representation
LetsGO: my journey on learning GO in 30 days
- Host: GitHub
- URL: https://github.com/brivan-26/letsgo
- Owner: Brivan-26
- Created: 2022-12-23T17:27:48.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-31T17:50:47.000Z (over 2 years ago)
- Last Synced: 2025-02-15T19:17:21.876Z (8 months ago)
- Language: Go
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LetsGO: Learn GO in 30 Days
This is my journey on learning GO in 30 days throughout tutorials and hand-on projects. I'm not a fan of watching tutorials, or reading books about technology I have no experience with, that's why I'm following this approach: **Learn by building**. Through out the journey, I used essentialy two references:
- [Learn go by examples](https://gobyexample.com/)
- [Learn go with tests](https://github.com/quii/learn-go-with-tests)
* Day 0: [Hello, intro into TDD](./Day-0/)
* Day 1: [Integers, Iterations](./Day-1/)
* Day 2: [Arrays, Slices](./Day-2/)
* Day 3: [Structs, Methods, Interfaces](./Day-3/)
* Day 4: [Pointers, Errors](./Day-4/)
* Day 5: [Maps](./Day-5/)
* Day 6: [Dependency Injection](./Day-6/)