This wiki is out of date, use the continuation of this wiki instead

End

From FenixWiki

Revision as of 13:29, 24 July 2007 by Sandman (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

Up to Basic Statements



[edit] Definition

End

End is a reserved word used to terminate loads of stuff, such as if-statements, loops, begin-statements, etc...

[edit] 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)
Personal tools