Skip to content

Commit c764238

Browse files
committed
feat: add core.logic library
1 parent 77df4c9 commit c764238

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It is built on top of the Clojure JVM runtime, but the parts that need dynamic c
88

99
- Starts quickly (it is compiled with GraalVM native-image)
1010
- Small (≪1K SLOC)
11-
- Out of the Box [core.async](https://github.com/clojure/core.async) support and also [some other core libraries](https://github.com/erdos/uclj/blob/master/src/uclj/core.clj#L10)
11+
- Out of the Box [core.async](https://github.com/clojure/core.async) support and also [many other core libraries](https://github.com/erdos/uclj/blob/master/src/uclj/core.clj#L10)
1212

1313
## Usage
1414

project.clj

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
[org.clojure/data.json "2.4.0"]
1313
[org.clojure/data.csv "1.0.0"]
1414
[org.clojure/data.xml "0.2.0-alpha6"]
15-
[org.clojure/math.combinatorics "0.1.6"]
16-
]
15+
[org.clojure/math.combinatorics "0.1.6"]]
1716
:main uclj.core
1817
:aot :all
1918
:java-source-paths ["src"]

src/uclj/core.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
(def namespaces-to-require
1111
'[[clojure.core]
1212
[clojure.core.async :as async]
13-
;[clojure.core.logic :as logic]
13+
[clojure.core.logic :as logic]
1414
;clojure.data
1515
;clojure.datafy
1616
[clojure.data.csv :as csv]

0 commit comments

Comments
 (0)