Is it possible implement Haskell syntax for infix operators? Example : ``` lisp (infixr 4 +) (1 + 2) ``` In this sense `(infixr 4 +)` is just a shorthand macro definition that gets globally applied to all expressions.