As an expression If an if branch is empty, or it’s missing, it’s considered as if it had nil in it: if 1 > 2 3end# The above is the same as: 3 nilend# Another example:if 1 > 2 3# The above is the same as:if 1 > 2 nilelseend