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
Allow '.' as an alternative syntax for '# '. Thus rather than writing '#emps scott' you could write 'scott.emps'.
This syntax is familiar for users of languages such as C, Java, SQL.
Because '.' and function application are both left-associative, it is easier to compose calls. You can write 'emp.address.zipcode' without parentheses, whereas the equivalent in function-oriented syntax would require parentheses, '#zipcode (#address emp)'.
The text was updated successfully, but these errors were encountered:
Allow '.' as an alternative syntax for '# '. Thus rather than writing '#emps scott' you could write 'scott.emps'.
This syntax is familiar for users of languages such as C, Java, SQL.
Because '.' and function application are both left-associative, it is easier to compose calls. You can write 'emp.address.zipcode' without parentheses, whereas the equivalent in function-oriented syntax would require parentheses, '#zipcode (#address emp)'.
The text was updated successfully, but these errors were encountered: