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

End

From FenixWiki

Revision as of 15:31, 1 May 2007 by FCR (Talk | contribs)
Jump to: navigation, search

Definition

LOOP

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

Example

Program test()
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