TyOverby / Pipe

Mozilla Public License 2.0
21 stars 1 forks source link

Identifiers that look like function calls should be treated as such. #48

Open TyOverby opened 10 years ago

TyOverby commented 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.