We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Basic core.logic works with ClojureScript. Some things that work in Clojure have not yet been implemented for ClojureScript including the following:
Using core.logic from ClojureScript requires doing a little bit more work as there are a large number of macros in addition to runtime functionality.
(ns example (:require [cljs.core.logic :as m :refer [membero]])) (m/run* [q] (membero q '(:cat :dog :bird :bat :zebra)))