I am in the process of learning Golang and to do so I am building a small breakout game directly in the terminal! The game uses tcell which is a Go package that provides a grid based view for terminals which will handle all the rendering of game entities.
To run the program:
go run .
will automatically compile and run the main.go
which is the main Go package.
See: Compile and run Go program for more information