@ogadaki Basically, we struggled at the intersection of “how does this language actually work” and “can people understand this”. An example of the former was “what is the lifecycle of a HTTP request that touches a DB”, and of the latter “can we make
if (x % 5 == 0)
easy to read, understand, and edit”
d
Dan Swirsky
05/21/2019, 6:23 AM
What if the statement is augmented with text that disappears during editing? As in "if (the remainder of x / 5 == 0)"?
👍 1
Dan Swirsky
05/21/2019, 6:24 AM
Of course, that would need to be an editor feature, and the editor would need to "know" the language
Dan Swirsky
05/21/2019, 6:48 AM
When I say augmented, I mean automatically by the editor after the statement has been written