robrix / Madness

Recursive Descent Into Madness
MIT License
291 stars 17 forks source link

Infix map binds looser than repetition #37

Closed robrix closed 9 years ago

robrix commented 9 years ago

x --> y * z is parsed as x --> (y * z) instead of (x --> y) * z. These should probably be at the same priority, but that’s not entirely clear.

robrix commented 9 years ago

This was fixed by @sharplet.

robrix commented 9 years ago

(In that one ought use <^> instead.)