break

命令 Instruction Type
break Break formatting
Commentary
一番内側のループ/ブロックから抜けます。 Most inner loop / exit from the block.
サンプルコード Sample code
for (i=0; i<10; i++) for (i = 0; i <10; i + +)
{ (
outputs[0] = i; outputs [0] = i;
if (i == 2) break; if (i == 2) break;
} )