Blocks

Blocks contain the variable and constant declarations and the statements that make up the body of a function. The structure of a block is:
--- local declarations of variables and constants go here.
BEGIN 
	--- One or more PL/MX statements go here.
END;