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
If IDE tooling, and autocomplete is so important, should functional languages use postfix notation?
((3, 4)add)print
In a way the . is used for this in most OO languages, but with multiple-dispatch, which arguments go before and which after the function name? Perhaps this syntax is more readable?
(3, 4).add.print
The text was updated successfully, but these errors were encountered:
If IDE tooling, and autocomplete is so important, should functional languages use postfix notation?
In a way the
.
is used for this in most OO languages, but with multiple-dispatch, which arguments go before and which after the function name? Perhaps this syntax is more readable?The text was updated successfully, but these errors were encountered: