Re: parens in use function

2008-12-08 Thread Mark Volkmann
On Mon, Dec 8, 2008 at 10:12 AM, Meikel Brandmeyer <[EMAIL PROTECTED]> wrote: > > Hi, > > On 8 Dez., 17:03, "Mark Volkmann" <[EMAIL PROTECTED]> wrote: >> I'm finding it a little difficult to remember all the allowed >> permutations. Hopefully over time this will become second nature for >> me, but

Re: parens in use function

2008-12-08 Thread Meikel Brandmeyer
Hi, On 8 Dez., 17:03, "Mark Volkmann" <[EMAIL PROTECTED]> wrote: > I'm finding it a little difficult to remember all the allowed > permutations. Hopefully over time this will become second nature for > me, but I'm not there yet. I'm sticking mostly with the way in your example. I structure my :u

Re: parens in use function

2008-12-08 Thread Mark Volkmann
On Mon, Dec 8, 2008 at 9:45 AM, Meikel Brandmeyer <[EMAIL PROTECTED]> wrote: > > Hi, > > On 8 Dez., 16:32, "Mark Volkmann" <[EMAIL PROTECTED]> wrote: >> I have some questions about the following: >> >> (use '[clojure.contrib.str-utils :only (str-join)]) >> >> Why is the vector quoted? Is that beca

Re: parens in use function

2008-12-08 Thread Meikel Brandmeyer
Hi, On 8 Dez., 16:32, "Mark Volkmann" <[EMAIL PROTECTED]> wrote: > I have some questions about the following: > > (use '[clojure.contrib.str-utils :only (str-join)]) > > Why is the vector quoted? Is that because we need to quote everything > inside the vector? You don't have to quote the vector:

parens in use function

2008-12-08 Thread Mark Volkmann
I have some questions about the following: (use '[clojure.contrib.str-utils :only (str-join)]) Why is the vector quoted? Is that because we need to quote everything inside the vector? If so, what does it mean to quote the keyword :only? Why is the parameter to the use function a vector? Why ca