Consensys / corset

4 stars 11 forks source link

Mistyping of `~or!()` in Standard Library #55

Closed DavePearce closed 5 months ago

DavePearce commented 5 months ago

Currently, we have this in the standard library:

(defpurefun ((or! :@loob) a b) (* a b))
(defpurefun ((~or! :@boolean) a b) (~ (or! a b)))

However, the latter should (presumably) be:

(defpurefun ((~or! :@loob) a b) (~ (or! a b)))