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

Begin

From FenixWiki

Revision as of 15:34, 1 May 2007 by FCR (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

Definition

Begin

Begin is a reserved word to begin a program block. it can contain statements and is mostly the block of code that belongs to a process or the main program code.

Example

Program test()
Begin
    proc1(); // create new instance of proc1
End

process proc1()
begin

end
Personal tools