命令 Instruction Type
continue Continue form
Commentary
一番内側のループ/ブロックの先頭に戻ります。 Most inner loop / return to the top of the block.
サンプルコード Sample code
for (i=0; i<5; i++) for (i = 0; i <5; i + +)
{ (
if (i == 2) continue; if (i == 2) continue;
outpts[0] = i; outpts [0] = i;
} )