If Statements
# A simple if statement:
if
account.total
>
100000
puts
"large account"
else
puts
"small account"
end