Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

Right, it's not Clojure, but we tried to borrow some syntactical elements for readability. More discussion here:

https://groups.google.com/forum/#!topic/clojure/P3eW6Vi2QcU



view as:

It has a very similar look and feel to Gremlin (http://tinkerpop.apache.org).

   (->> ($alice) (assoc $friends) (assoc $friends) (filter (> age 20)) (count))
...in Gremlin is:

   g.V(alice).out("friends").out("friends").has("age",gt(20)).count()

Legal | privacy