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
Not sure how important this is, but for bigger expressions it might make sense to use some kind of let expression syntax to avoid duplication/improve readability. I propose a syntax like the following:
let a = 1 + 1,
b = a / 10,
c = 20
in
a * c
Implementation-wise, the use of let expressions will make no difference. I even propose that we implement this as parse time expansion.
The text was updated successfully, but these errors were encountered:
Not sure how important this is, but for bigger expressions it might make sense to use some kind of let expression syntax to avoid duplication/improve readability. I propose a syntax like the following:
Implementation-wise, the use of let expressions will make no difference. I even propose that we implement this as parse time expansion.
The text was updated successfully, but these errors were encountered: