Lugaru's Epsilon Programmer's Editor 14.04
Context:
|
Epsilon User's Manual and Reference > Epsilon Extension Language > Statements > Block{ declarations statements } Anywhere you can have a statement, you can have a block. A block contains any number of local variable declarations or statements (including zero). The variables declared in the block are local to the block, and you may only use them in the following statements (or in statements contained in those statements). A block's declarations can be mixed in freely among its statements. The body of a function definition is itself a block.
|