Re: A toy string template macro

2009-03-21 Thread Laurent PETIT
Hello, 2009/3/21 Victor Rodriguez > > Here is something I wrote as a Clojure learning exercise. > > I have a suspicion that a serious implementation of this may exist, > please let me know if that is so! In common lisp, there is cl-interpol (for String INTERPOLation) : http://www.weitz.de/cl-

A toy string template macro

2009-03-20 Thread Victor Rodriguez
Here is something I wrote as a Clojure learning exercise. I have a suspicion that a serious implementation of this may exist, please let me know if that is so! Cheers, Victor Rodriguez. http://gist.github.com/82727 ;;; A toy to experiment with Clojure macros. ;;; ;;; (f "1 + 2 = ~(+ 1 2)") re