Re: prose - a minimal language, inspired by Io/Ioke, that compiles to Clojure and ClojureScript
It isn't Google, I just don't use mailing lists often. I gave a bad URL and I figured deleted the original messages would delete the thread. Here is the repost: https://groups.google.com/forum/?hl=en#!topic/clojure/NV8ujk4L8MI On Tuesday, May 26, 2015 at 11:59:14 AM UTC-5, Fluid Dynamics wrote: > > I'm sorry, but for some reason I can't seem to view the contents of this > thread. In fact, even the "reply" button on it isn't working correctly > (just does nothing) so I'm having to create a "new" thread with the > appropriate subject line. > > Google seems to have effed something up here so perhaps you should repost > both posts about prose so that we can read them. > -- 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.
Re: prose - a minimal language, inspired by Io/Ioke, that compiles to Clojure and ClojureScript
I'm sorry, but for some reason I can't seem to view the contents of this thread. In fact, even the "reply" button on it isn't working correctly (just does nothing) so I'm having to create a "new" thread with the appropriate subject line. Google seems to have effed something up here so perhaps you should repost both posts about prose so that we can read them. -- 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.
Re: prose - a minimal language, inspired by Io/Ioke, that compiles to Clojure and ClojureScript
Sorry, the url is https://github.com/aaron-lebo/prose On Tuesday, May 26, 2015 at 11:49:13 AM UTC-5, Aaron Lebo wrote: > > 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.
prose - a minimal language, inspired by Io/Ioke, that compiles to Clojure and ClojureScript
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.