Sent using BlackBerry® from Orange
-Original Message-
From: clojure@googlegroups.com
Sender: clojure@googlegroups.com
Date: Sat, 07 Jan 2012 00:21:58
To: Digest Recipients
Reply-To: clojure@googlegroups.com
Subject: Digest for clojure@googlegroups.com - 8 Messages in 6 Topics
==
On Sat, Jan 7, 2012 at 8:01 AM, wrote:
> Sent using BlackBerry® from Orange
>
> From: clojure@googlegroups.com
> Sender: clojure@googlegroups.com
> Date: Sat, 07 Jan 2012 00:21:58 +
> To: Digest Recipients
> ReplyTo: clojure@googlegroups.com
> Subject: Digest
On Fri, Jan 6, 2012 at 2:02 PM, kovas boguta wrote:
> I think what matters is the design. Jquery is an accessible
> implementation target, but if someone wants to retarget the design to
> gclosure, thats fine too (just more work than is need to get started)
>
Chris and Kovas -
By going with jque
This is excellent. Thank you.
On Friday, January 6, 2012, Tassilo Horn wrote:
> Hi all,
>
> after spending the last two days making clojure.core.logic work with our
> custom Java data structures, I decided to write a short blog posting
> about it. Here it is:
>
>
http://tsdh.wordpress.com/2012/0
Echoing the others: Thanks!
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from th
Documentation:
http://clojure.github.com/java.jdbc/doc/clojure/java/jdbc/UsingSQL.html
On Friday, January 6, 2012, jayvandal wrote:
> I tried this code :
> (defn add-ausers [user]
> (sql/with-connection db
> (sql/insert-record :books user
> ["INSERT INTO books(BOOK_ID, BOOK_NAME, BO
Hey David,
>From the readme the failing disequality example:
(run* [q]
(fresh [x y]
(!= [x 2] [1 y])
(== x 1)
(== y 2)
(== q [x y])))
gives me ([1 2])
Shouldn't it be:
(run* [q]
(fresh [x y]
(!= [x 2] [1 y])
(== x 1)
(== y 2)
(== q [x y])))
--
You received
Hey David,
>From the readme, the failing disequality example:
(run* [q]
(fresh [x y]
(!= [x 2] [1 y])
(== x 1)
(== y 2)
(== q [x y])))
gives me ([1 2])
Shouldn't it be:
(run* [q]
(fresh [x y]
(!= [x 2] [1 y])
(== x 1)
(== y 2)
(== q [x y])))
--
You receive
Hi
On 8 January 2012 06:20, jim wrote:
> Hey David,
>
> From the readme the failing disequality example:
>
> (run* [q]
> (fresh [x y]
> (!= [x 2] [1 y])
> (== x 1)
> (== y 2)
> (== q [x y])))
>
> gives me ([1 2])
>
> Shouldn't it be:
>
> (run* [q]
> (fresh [x y]
> (!= [x 2] [1 y]