01-06 WHILE
中文:在條件還為真(true)時執行指令。
原文:execute command while expression is true
格式:#while expression {commands}
範例:#var a 0
#while @a<10 {#var a %eval(@a+1)
#say hi @a}
在a<10前,會一直執行#say hi @a。這是一道不小心使用便當機的指令,
請小心使用,和上一個概念相反,條件設錯的話,不像until那麼容易解
開。