Make empty argument lists optional #69
Labels
ast
Anything related to the internal representation of the AST.
improvement
Adding a new feature, improving an existing feature, etc.
This might require havingTo fix this, we'll changewhere
bindings be wrapped in an extra set of parentheses, so as to avoid ambiguities between the optional argument list, required function body, and optional where-bindings.(= foo args ...)
to(= (foo args) ...)
(which has the added benefit of matching how functions are defined in Common Lisp etc., and even – in a sense – Haskell!).The text was updated successfully, but these errors were encountered: