- This wiki is out of date, use the continuation of this wiki instead
 
End
From FenixWiki
(Difference between revisions)
												
			
			| Revision as of 15:31, 1 May 2007 (edit) FCR (Talk | contribs) ← Previous diff  | 
				Revision as of 15:34, 1 May 2007 (edit) (undo) FCR (Talk | contribs) Next diff →  | 
			||
| Line 1: | Line 1: | ||
| [[category:reserved]] | [[category:reserved]] | ||
| == Definition == | == Definition == | ||
| - | ''' | + | '''END''' | 
| End is a reserved word used to terminate loads of stuff, such as [[if|if-statements]], [[loop|loops]], [[block|begin-end statements]], etc... | End is a reserved word used to terminate loads of stuff, such as [[if|if-statements]], [[loop|loops]], [[block|begin-end statements]], etc... | ||
Revision as of 15:34, 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 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)
						
			
		