--- Hi! Welcome to the number guessing game! I'm thinking of a number between 1 and 100. Your job is to try and guess which number I'm thinking of! Good luck! [[Begin!]] ------ (set: $guess to (prompt: "What number do you guess?", "0")) (set: $guess to (num: $guess)) (if: $guess is > 73)[[Too high! Guess again!]] (if: $guess is < 73)[[Too low! Guess again!]] (if: $guess is 73)[[Correct!]] ---(set: $guess to 73) {(goto: "Begin!")}{(goto: "Begin!")}--- {You win! Great job!} ---