Re: using regex reader macro with generated code

2011-06-16 Thread Daniel Werner
On Jun 16, 4:47 am, Alex Baranosky wrote: > IS it possible to use the regex reader macro #"" with generated code?  What > I mean is do something like: > > #"${(join "|" (range 1 1))}" > > I'm using ${...} to mean string interpolation, though I know Clojure doesn't > have that syntax.  Is there

Re: using regex reader macro with generated code

2011-06-16 Thread Rasmus Svensson
2011/6/16 Alex Baranosky : > IS it possible to use the regex reader macro #"" with generated code?  What > I mean is do something like: > #"${(join "|" (range 1 1))}" > I'm using ${...} to mean string interpolation, though I know Clojure doesn't > have that syntax.  Is there a way to get this e

Re: using regex reader macro with generated code

2011-06-16 Thread Ken Wesson
On Wed, Jun 15, 2011 at 10:47 PM, Alex Baranosky wrote: > IS it possible to use the regex reader macro #"" with generated code?  What > I mean is do something like: > #"${(join "|" (range 1 1))}" > I'm using ${...} to mean string interpolation, though I know Clojure doesn't > have that syntax.

using regex reader macro with generated code

2011-06-15 Thread Alex Baranosky
IS it possible to use the regex reader macro #"" with generated code? What I mean is do something like: #"${(join "|" (range 1 1))}" I'm using ${...} to mean string interpolation, though I know Clojure doesn't have that syntax. Is there a way to get this effect or must I use (re-pattern (jo