Add back custom operators
Pre 1.0 had the ability to define custom operators with precedence and associativity. It would be nice to have that back. Some syntax ideas:
operator ** 14 right = function (left, right) {
return #`Math.pow(${left}, ${right})`;
}
Most of the plumbing for this features is already done. Just need to decide on the right syntax.