_________________________________________________________________________________________________________
Blocks
___________________________________________________________________
Labels that can be used to identify statements in a block are declared in the label declaration part of that block. Each label can only identify one statement. Constants that are to be used only in one block should be declared in that block's constant declaration part. Variables that are to be used only in one block should be declared in that block's constant declaration part. Types that are to be used only in one block should be declared in that block's constant declaration part. Lastly, functions and procedures that will be used in that block can be declared in the procedure/function declaration part. After the di erent declaration parts comes the statement part. This contains any actions that the block should execute. All identi ers declared before the statement part can be used in that statement part.