if 语句有多个分支
d = Dates.dayofweek(now())
if d == 7
println("It is Sunday!")
elseif d == 6
println("It is Saturday!")
elseif d == 5
println("Almost the weekend!")
else
println("Not the weekend yet...")
end
任何数量的 elseif
分支都可以与 if
语句一起使用,可能有或没有最终的 else
分支。只有在发现所有先前条件为 false
时,才会评估后续条件。