Guess the number is a guessing game made with the Go programming language, where you have to guess the correct number between a range of values. While playing, the game will give you hints to help you reach the desired number.
An example of its interface.
For testing the game you only must have a version of the go compiler installed on your machine, then you can use the following commands:
go run main.go
Or you can compile it first and then execute the binary format:
go build main.go
./main
*When compiling you can execute the first line just one time and then call it whenever you want using the binary file.