- This wiki is out of date, use the continuation of this wiki instead
End
From FenixWiki
(Difference between revisions)
Revision as of 21:28, 1 May 2007 (edit) Sandman (Talk | contribs) m ← Previous diff |
Revision as of 21:28, 1 May 2007 (edit) (undo) Sandman (Talk | contribs) m (category) Next diff → |
||
Line 1: | Line 1: | ||
[[category:reserved]] | [[category:reserved]] | ||
+ | [[category:language]] | ||
+ | |||
== Definition == | == Definition == | ||
'''END''' | '''END''' | ||
Line 7: | Line 9: | ||
== Example == | == Example == | ||
<pre> | <pre> | ||
- | Program | + | Program example; |
Begin | Begin | ||
If(something) | If(something) | ||
If(something_else) | If(something_else) | ||
Loop | Loop | ||
- | | + | frame; |
End //ends the loop | End //ends the loop | ||
End //ends the second if-statement | End //ends the second if-statement |
Revision as of 21:28, 1 May 2007
Definition
END
End is a reserved word used to terminate loads of stuff, such as if-statements, loops, begin-end statements, etc...
Example
Program example; Begin If(something) If(something_else) Loop frame; End //ends the loop End //ends the second if-statement End //ends the first if-statement End //ends the program block (begin keyword)