On 2/17/22 12:53 PM, bachmeier wrote:
> A simple solution is to add a `-scottmeyers` switch that retains full
> compatibility with C, but sets the default as a language that is
> productive.
Let's try it in C:
```c
for(unsigned int i = 5; i > -1; --i) printf("i is %d\n", i);
```
output is nothing.
-Steve