Space to play around with Go, learn the basics, and document my progress.
- Hello, World! -- (2024-03-09) -- Setup Go using
go mod init
and created a simple "Hello, World!" program inmain.go
. - Variables & Data Structures -- (2024-03-09) -- Learned about variables and how to use them in Go.
- Loops -- (2024-03-09) -- Learned how to create loops using the
for
keyword. - Functions -- (2024-03-09) -- Learned how to create functions and handle errors in Go.