跳至内容

作为后缀

一个 if 可以写成表达式的后缀

a = 2 if some_condition

# The above is the same as:
if some_condition
  a = 2
end

这有时会导致代码更自然易读。