So now we know what booleans are and how loops work. What if we want to execute a code block based on some condition, though?
Of course: the if keyword! Since the condition is true, Ruby will execute the code block between if and end.
Won't that condition be false?