Building a Simple Game in Golang
If you want to learn Golang or programming in general, then this tutorial is for you. We are going to look at how you can create a simple console game in Go. It includes a player that you can move across a 2D field to collect items and evade enemies. Apart from Go’s excellent standard functions, we are utilizing the amazing bubbletea library, which makes it really simple to write terminal based user interfaces.
You can find the video tutorial here: Building a Simple Game in Golang
Other Links:
- Thumbnail image credits: Photo by Mikhail Fesenkoa from Pexels: https://www.pexels.com/photo/man-writing-a-code-on-a-computer-and-laptop-9553905/
- How to install Go: https://go.dev/doc/install
- Bubbletea library for building terminal UIs: https://github.com/charmbracelet/bubbletea
- Full source code of our game: https://github.com/isensee-bastian/collectevade
#Programming #Golang #TutorialVideo #ConsoleGame