We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When writing compilers pattern matching is incredibly useful. Dan & Will both recommend supporting function application.
(defn parse [expr] (match [expr] [['if (test :> parse) (then :> parse) (else :> parse)]] {:op :if :test test :then then :else else}))