# Hints ## General - In Elixir's ['Getting Started Guide'][guide] there is a nice refresher about named functions. ## 1. Make the response when the guess matches the secret number - You can use a [guard][guard] to check if the numbers are the same with `===/2`. ## 2. Make the response when the guess is greater than the secret number - You can add a [function clause][multiple-fn-clauses] and [guards][guard] to check if the guess is greater `>/2` than the secret number. ## 3. Make the response when the guess is less than the secret number - You can add a [function clause][multiple-fn-clauses] and [guards][guard] to check if the guess is less than `