Skip to content

Commit

Permalink
Document continue statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
evantypanski committed Oct 8, 2024
1 parent dd9393f commit 125d3fd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions doc/programming/language/statements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@ See :ref:`statement_reject` to reject the synchronization instead.

``confirm`` can only be invoked from hooks.

.. _statement_continue:

``continue``
------------

::

continue;

Inside a :ref:`statement_for` or :ref:`statement_while` loop, ``continue``
causes the remaining portion of the enclosing loop body to be skipped.

.. _operator_end:

``end``
Expand Down

0 comments on commit 125d3fd

Please sign in to comment.