Go to the first, previous, next, last section, table of contents.

next

`next LABEL'
`next'
next コマンドは C における continue に似ていて、 ループの次の繰り返しを行う。
line: while (<STDIN>) {
     next line if /^#/;  # コメントは捨てる
     ...
}
注意:
もし continue ブロックが上例にあれば、 無視される行であっても実行される。LABEL を省略した場合、 next は括弧で囲まれたループの最後にとぶ。

Go to the first, previous, next, last section, table of contents.