Thank you for an awesome library! Just a couple of days ago i've posted a 
question (https://groups.google.com/forum/#!topic/clojure/AVqx5Tbn8K8) and 
it was recommended to me. A miraculous coincidence:)

Vitaliy.

On Monday, September 14, 2015 at 8:40:55 PM UTC+3, Vitaliy Akimov wrote:
>
> The main change in the release is cljs support and also ns is changed to 
> more appropriate.
>
> And here is a reminder about what the library does. It simply adds mixfix 
> operators into the language without preprocessing and changing language 
> itself. So using the library you can write clojure expressions like this:
>
>
> (defn myfun [x y] 
>    (if x < 2 then x + y - 1 else (x + y) * 2))
>
>
> And also develop richer syntax EDSLs like this:
>
>
> (exec (select * from table1, table2 where col1 < col2 group by col1, col2
> ))
>  
>
> The syntax is defined using following simple directives (which are in fact 
> just macro invocations):
>
>
> (m/op 400 + [[] + [+]])
> (m/op 400 - [[] - [+]])
> (m/op 500 * [[] * [+]])
> (m/op 500 / [[] / [+]])
> (m/op 400 < [[] < []])
>
> (m/op 100 if [if [+] then []])
> (m/op 110 if [if [+] then [] else []])
>
>
>
>
> It specifies precedence, symbol to be used as a head of application in 
> result, and a pattern to be used for parsing.
>
> For more details check project's github home: 
> https://github.com/awto/mixfix-clj
>
> Regards, Vitaliy
>
>

-- 
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