Go to the first, previous, next, last section, table of contents.

Block

block is a simple grouping of statements into one logical statement. You shouldn't need to use the block statement that often, as loops and if-then-else statements can contain multiple statements already. Most of the time, you may need to start a new block because you would like to introduce a new variable, such as:

Note that you can also use the WITH statement for creating new name bindings, also.


Go to the first, previous, next, last section, table of contents.