Hi!
(me/match '[?a :?a]
[?e (me/app keyword ?e)] true) => fails
What am I missing?
@nlessa I think because the pattern is backwards?
(m/match '[?a :?a]
[(m/app keyword ?e) ?e]
true)
;; => true
In the example you shared keyword
is being applied to :?a
and then compared to '?a
(`?e`) and fails.