Re: [go-nuts] Running tests in read-only containers

2019-04-27 Thread David Riley
> On Apr 27, 2019, at 1:11 AM, Constantin Konstantinidis > wrote: > > Your description seems to relate to this issue > https://github.com/golang/go/issues/30667. It does indeed! It would be great if there were also a way to prevent it from trying to modify the cache, or at least to be less

Re: [go-nuts] Go if else syntax .. suggested replacement

2019-04-27 Thread Michael Jones
Agree completely. Despite my reasoned comfort with Go’s rationale I miss quite a few “but I want to express this algorithm beautifully for the ages” features. I don’t miss the ternary syntax but miss the natural way to say “it is an assignment, first, but subject to logic, second.” Same as I miss

[go-nuts] nhooyr.io/websocket: A minimal and idiomatic WebSocket library for Go

2019-04-27 Thread nhooyr
https://github.com/nhooyr/websocket Some discussion on HN: https://news.ycombinator.com/item?id=19766261 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [go-nuts] Go if else syntax .. suggested replacement

2019-04-27 Thread charles . forsyth
Ada originally followed BCPL and Pascal in distinguishing between commands (statements) and expressions, compared say to Algol68 which was an expression language. BCPL had VALOF/RESULTIS to link the two realms. It also had a conditional expression (A -> B, C) with the same meaning as B's and