跳至內容

until

until 會執行其程式碼區塊直到條件為until 只是 while 條件取反的語法糖。

until some_condition
  do_this
end

# The above is the same as:
while !some_condition
  do_this
end

breaknext 也可以在 until 內使用,就像在 while 表達式中一樣,break 可以用來從 until 返回值。