robrix / Madness

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

Infix repetition binds looser than concatenation #36

Closed robrix closed 8 years ago

robrix commented 9 years ago

I.e. x * 3 ++ y won’t compile because it’s parsed as x * (3 ++ y) instead of (x * 3) ++ y.