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

End

From FenixWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 21:28, 1 May 2007 (edit)
Sandman (Talk | contribs)
m (category)
← Previous diff
Revision as of 21:42, 1 May 2007 (edit) (undo)
Sandman (Talk | contribs)
m
Next diff →
Line 5: Line 5:
'''END''' '''END'''
-End is a reserved word used to terminate loads of stuff, such as [[if|if-statements]], [[loops]], [[block|begin-end statements]], etc...+End is a reserved word used to terminate loads of stuff, such as [[if|if-statements]], [[loops]], [[begin|begin-statements]], etc...
== Example == == Example ==

Revision as of 21:42, 1 May 2007


Definition

END

End is a reserved word used to terminate loads of stuff, such as if-statements, loops, begin-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)
Personal tools