Closed GoogleCodeExporter closed 9 years ago
Isolated variables declarations are not blocks in scripting or mixed-mode, as
the syntax would be ambiguous otherwise, f.i.
var i := 123; // declares a new variable i and assigns it 123
j := 456; // assigns 456 to existing variable j
If you want variable blocks, you can use a unit structure (unit / interface /
implementation) or place them in blocks at the beginning of procedure
declarations.
Original comment by zar...@gmail.com
on 6 Aug 2012 at 7:56
Original issue reported on code.google.com by
tom.robe...@gmail.com
on 6 Aug 2012 at 7:07