Currently order is right to left, which is counter-intuitive. It was easy to write the parser for this way, but the effect is poor quality. ``` match { T { a:1, b:2 } => ...; }; # evaluates b before a ```
Currently order is right to left, which is counter-intuitive. It was easy to write the parser for this way, but the effect is poor quality.