Hi,

I wanted to show a little project I've been working on.

It is called prose, the syntax is heavily inspired by Io and Ioke. It is 
not object-oriented, though. It does compiles to readable 
Clojure/Clojurescript. A quick comparison of syntax:

prose:

sum = reduce partial(+)
[1, 2, 3] sum + 1 println


Clojure:

(def sum (partial reduce +)) 
(println (+ 1 (sum [1 2 3])))



I used Instaparse for it, which was incredible.

https://github.com/aaron-lebo

-- 
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 this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to