- This wiki is out of date, use the continuation of this wiki instead
Begin
From FenixWiki
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
