On Thursday, 16 January 2025 at 06:53:23 UTC, Walter Bright wrote:
>This was requested in the newsgroups. Adds the syntax:
{
with (E):
statement;
statement;
}
which is equivalent to:
{
with (E)
{
statement;
statement;
}
}
and that's all there is to it.
Cool. Doesn’t require a DIP because this is purely additional.