01-04 FORALL
中文:以列表(list)的內容跑一遍。
原文:loop through a string list and execute command for each item
格式:#forall {word1|word2|word3|...} {commands}
範例:#forall {hi|hello|iori|iori2} {say hi}
當list裡有幾個字串存在,就會執行幾次say hi,這並未發揮forall的效
果。
#forall {hi|hello|iori|iori2} {say %i}
將字串帶入%i,依序顯示在畫面上,這才是forall的真正用法。
#forall @semote {%i}
字串可以先寫在變數裡,再將變數的名稱安在list的位置,當list過長或
內容會變動時使用。