例1. i が 10 を超えるまで加算を繰り返す i = 0 $loop i = i + 1 if i <= 10 then $loop
例2. 例1 の変形 i = 0 $繰り返し i = i + 1 if i > 10 then $終了 goto $繰り返し $終了