Booleans allow us to create a program's control flow. This means we can executes a code snippet only if a certain condition is met. 

Can you guess what's the name of the command in the code?

Great! This so-called if statement checks if condition is true and, since it is, executes the command.

Wouldn't it make more sense to use if?