Russ Cox

Results 790 comments of Russ Cox

> It seems like we still need to reach consensus on the actual command. This still seems to be the case.

Very nice, thanks. I like the colon prefixes, or at least the fact that they don't look like the other colon expressions. I am not sure about the colon not...

Perfect, thanks.

I sent #241 to make (f x)[1] like x[1] but leave 1 2 3 4[2] alone. It only broke one test case, although I'm still not sure it's right. I...

Also sent #242 to apply the tighter [x] precedence uniformly as an alternative. To me it seems okay to restore consistency by losing `1 3 2 4[up 1 3 2...

Interesting. It looks like ca8e403cb1 is the culprit here and is relatively new (2023).

Sounds good to me. Happy to close this.

The diff does make it a real control structure rather than a binary operator: 'x else y' does not evaluate y unless x panics. But the code handling variable ordering...

This is taking advantage of build caching. But the cache does not cache executables, so the link is happening (for package main), and that's what must be taking the time....