If Clause
n = 10
if n < 20 then
print("n is less than 20")
elseif n ~= 30 then
print("n is not 30")
else
print("hi")
n = 10
if n < 20 then
print("n is less than 20")
elseif n ~= 30 then
print("n is not 30")
else
print("hi")