Exit: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

7 January 2024

  • curprev 04:1104:11, 7 January 2024 Doom64hunter talk contribs 582 bytes +582 Created page with "The '''exit''' command breaks out of a loop, in the way one would normally from "break" commands in other languages. It should not be used outside of loops. It should be used instead of break if the intention is to actually leave the loop early. See also continue, return and terminate. == Example == set j 0 whilen j 3 { add j 1 userquote 500 exit userquote 400 } Makes quote 500 be displayed exactly once..."