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
It really seems like I should be able to factor out a syntax class that has two forms:
(x:id @ port:id) -> 'x , 'port and (x:id) -> 'x, 'inf#
and then rewrite the above in a single line. However, I wasn't able to do this without
needing parenthesis around the syntax class. In other words, I could factor it out, but then I would need to write (define/module ..... [(sub @ left) -> (out)] instead of [sub @ left -> out].
I wanted to avoid more parenthesis. I know, blasphemy.
The text was updated successfully, but these errors were encountered:
Right now I have this nonsense:
It really seems like I should be able to factor out a syntax class that has two forms:
(x:id @ port:id) -> 'x , 'port and (x:id) -> 'x, 'inf#
and then rewrite the above in a single line. However, I wasn't able to do this without
needing parenthesis around the syntax class. In other words, I could factor it out, but then I would need to write (define/module ..... [(sub @ left) -> (out)] instead of [sub @ left -> out].
I wanted to avoid more parenthesis. I know, blasphemy.
The text was updated successfully, but these errors were encountered: