robrix / Madness

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

Postfix repetition operators taking the various literals #53

Closed robrix closed 9 years ago

robrix commented 9 years ago

Right now you have to write:

let xs = (%"x")*

Those parens are yucky! It’d be nicer to write:

let xs = "x"*

And we can totally make that happen.

robrix commented 9 years ago

Implemented by @davidcairns in #57! :bow: