Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 761 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 761 Bytes

Go Breakout 🔨

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.

Resources

Run

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