Elixir - Unless 语句

unless 语句由一个布尔表达式后跟一个或多个语句组成。

语法

unless 语句的语法如下 −

unless boolean-statement do
   #如果条件为 false 则执行的代码
end

如果布尔表达式的计算结果为false,则将执行unless 语句内的代码块。 如果布尔表达式的计算结果为 true,则将执行给定的 except 语句的 end 关键字之后的第一组代码。

示例

a = false
unless a === true do
   IO.puts "Condition is not satisfied"
   IO.puts "So this code block is executed"
end
IO.puts "Outside the unless statement"

上面的程序生成以下结果 −

Condition is not satisfied
So this code block is executed
Outside the unless statement

❮ elixir_decision_making.html