Open TyOverby opened 10 years ago
This will require changes in the math parser.
Right now
:sin(a) / 5
Gives us what looks like sin a/5 which is totally not intuitive. We should have another case for : identifiers that are followed by an open paren and treat them like we would macros, consuming the whole contents as a single expr.
sin a/5
:
This will require changes in the math parser.
Right now
Gives us what looks like
sin a/5
which is totally not intuitive. We should have another case for:
identifiers that are followed by an open paren and treat them like we would macros, consuming the whole contents as a single expr.