各種Loopを抜ける
Break
一番内側のループを抜け、ループ内容の次の行に実行を移す。
Loop, Continue, Blocks
loop { ... if var > 25 break ... if var <= 5 continue }