Elixir - if 语句



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

语法

if 语句的语法如下 −

if boolean-statement do
   #Code to be executed if condition is satisfied
end

如果布尔表达式求值为真,则 if 语句内的代码块将被执行。如果布尔表达式求值为假,则会执行给定 if 语句结尾关键字后的第一组代码。

流程图

If Statement

示例

a = true
if a === true do
   IO.puts "Variable a is true!"
   IO.puts "So this code block is executed"
end
IO.puts "Outside the if statement"

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

Variable a is true!
So this code block is executed
Outside the if statement
elixir_decision_making.htm
广告