/hilo_go

A simple game where the user tries to guess a randomly selected number. After each guess, the application tells the user if their guess is too high or too low. This is repeated until the user guesses the number.

Primary LanguageGoThe UnlicenseUnlicense

hilo_go

A simple game where the player tries to guess a randomly selected number. After each guess, the application tells the player if their guess is too high or too low. This is repeated until the player guesses the correct number.

main.go demonstrates structs and methods, generating random numbers using math/rand, and reading console input with bufio.

main_test.go demonstrates testing using the testify toolkit.