On Saturday, 18 June 2022 at 08:49:30 UTC, Salih Dincer wrote:
> for (int i = 1; i; --i)
> {
D supports this or the `for (i = 0; i; i++)` variant. Walter's
example has a semicolon before the brace - that is an error as
it's easy not to notice it!