You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
would produce (a b c). In the spec-compliant rust version it produces ((a b) c). After using it for a bit, I think the reasons for wanting that are just too galaxy-brained. Cases where people wish it didn't do that are so much more common and the former design is generally easier to reason about. For instance, in the new design, this:
0
a b
indental
≠
0 (a b
indental
I imagine most people would miss that, and they would wish that it would work, and they might not easily be able to figure out how to even express the first structure with the second indents.
The text was updated successfully, but these errors were encountered:
The motivating case for this was commenting or producing literals, in munk.
I wanted to make sure that you could comment a block out by simply adding two characters at its root. EG
def including (query
from (args my_alts music_taste)
hops 5
limit 40
tag music
could be made inert in a way that still preserves the structure by adding #( or '( on the first line
In the initial design,
would produce
(a b c)
. In the spec-compliant rust version it produces((a b) c)
. After using it for a bit, I think the reasons for wanting that are just too galaxy-brained. Cases where people wish it didn't do that are so much more common and the former design is generally easier to reason about. For instance, in the new design, this:≠
I imagine most people would miss that, and they would wish that it would work, and they might not easily be able to figure out how to even express the first structure with the second indents.
The text was updated successfully, but these errors were encountered: