Lazy evaluation of conditionals

TODO

Does ruby Lazily evalute if condition?

# When name is not "john"
# does it even check if the email is john@email.com
if name == "john" && email == "john@email.com"
end