Mike Wrote:
> 4. Replace C-style switch with something modern and more D-like:
>
> switch (x)
> {
> case (0) foo();
> case (1)
> {
> bar();
> baz();
> }
> else throw new Exception("nope");
> }
looks interesting :)