条件语句
vine
if a > b:
print("a > b")
else if a < b:
print("a < b")
else:
print("a = b")
end
三元表达式
vine
let res = 1 > 2 ? "1大于2" : "1小于2"
print(res)