📜  朱莉娅中的 if 条件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:38.690000             🧑  作者: Mango

代码示例1
if x < y
    println("x is less than y")
elseif x > y
    println("x is greater than y")
else
    println("x is equal to y")
end