meander

Richie 2022-10-15T17:58:52.229249Z

I just debugged something not obvious so I wanted to share.

(m/match assoc
  assoc :assoc
  _ :not)
;; :not

(m/match assoc
  ~assoc :assoc
  _ :not)
;; :assoc

👍 1
Richie 2022-10-15T17:59:10.599799Z

Richie 2022-10-15T17:59:47.386029Z

So, yea, the function assoc is not the same as the symbol.

Richie 2022-10-15T18:02:19.389209Z

I guess maybe it would have been clear if I were in the right mindset.