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

exit

`exit(EXPR)'
`exit EXPR'
EXPR を評価し、その値で直接 exit する。
        $ans = <STDIN>;
        exit 0 if $ans =~ /^[Xx]/;
EXPR を省略すると、status 0 で exit する。 See section die.

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