taoensso / tower

i18n & L10n library for Clojure/Script
https://www.taoensso.com/tower
Eclipse Public License 1.0
277 stars 24 forks source link

encore.cljs: contains? not supported on type: clojure.lang.PersistentList #75

Closed agaldos closed 8 years ago

agaldos commented 8 years ago

Hi,

My code fails to compile due to this - see attached.

Here:

(defn pos-int? [x] (and (integer? x) (pos? x)))

captura de pantalla de 2016-08-15 11 41 07

Can you help?

Many thanks!

ptaoussanis commented 8 years ago

Hi there,

clojure introduced pos-int? into the clojure.core ns with the 1.9 alpha, breaking older versions of encore. To work correctly with Clojure 1.9, you need to make sure you're using the latest version of encore.

agaldos commented 8 years ago

Thanks! solved