Happens to all of us :)
On Apr 14, 12:03 pm, Nicolas Buduroi wrote:
> On Apr 14, 11:44 am, Sean Devlin wrote:
>
> > Why are you using quasi-quote?
>
> D'oh! For no reason at all, damn I feel stupid, lol! Thanks
--
You received this message because you are subscribed to the Google
Groups "Cloju
On Apr 14, 11:44 am, Sean Devlin wrote:
> Why are you using quasi-quote?
D'oh! For no reason at all, damn I feel stupid, lol! Thanks
--
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
Why are you using quasi-quote?
On Apr 14, 11:23 am, Nicolas Buduroi wrote:
> On Apr 14, 11:12 am, Sean Devlin wrote:
>
> > user=> (str '(is this what you mean?))
> > "(is this what you mean?)"
>
> No, more like this:
>
> user=> (str `(str "foo"))
> "(clojure.core/str \"foo\")"
>
> I would like t
Hi,
On Apr 14, 5:23 pm, Nicolas Buduroi wrote:
> No, more like this:
>
> user=> (str `(str "foo"))
> "(clojure.core/str \"foo\")"
>
> I would like to get: "(str \"foo\")"
>
> BTW, I'm not asking for code to do that, just if there's some options
> or hidden functionality that would switch off ful
On Apr 14, 11:12 am, Sean Devlin wrote:
> user=> (str '(is this what you mean?))
> "(is this what you mean?)"
No, more like this:
user=> (str `(str "foo"))
"(clojure.core/str \"foo\")"
I would like to get: "(str \"foo\")"
BTW, I'm not asking for code to do that, just if there's some options
or
user=> (str '(is this what you mean?))
"(is this what you mean?)"
On Apr 14, 11:08 am, Nicolas Buduroi wrote:
> Hi, I've got a simple question: When converting a form to a string the
> resolved symbols are fully qualified, is there a way to get the string
> with just the symbols?
>
> Thanks
>
> -