Leiningen is very easy to pronounce for the dutch :). We've the word
"Leningen" anyway ("Loans"), and ei is a common vowel combination in
dutch as well (I actually grew up in Leiden).

Ontopic: I might be missing something, but is there an obvious way to
do something like "lein src/chlamydia.clj" when I'm in the projects'
directory ("chlamydia"), to run a script as in "java -server
clojure.main chlamydia.clj"? I didn't see anything in the file "lein"
itself that seemed to point to that, so I added the below bit after
the "if repl" bit.

elif [ ${1: -4} = ".clj" ]; then
    # Small hack to use lein to start clojure scripts
    java -cp "$CLASSPATH" clojure.main "$1"

which seems to work fine, but as I'm unfamiliar with the whole
building practice of having a project directory, with a src and a
project.clj, I'm not sure if there is a better workflow than using the
above and a few different variants of chlamydia.clj (next to the main
one) in the src directory.

On Nov 20, 7:40 pm, Phil Hagelberg <p...@hagelb.org> wrote:
> Sean Devlin <francoisdev...@gmail.com> writes:
> > Something tells me we'll just be calling it 'lein'.  Is that okay
> > Phil?
>
> Yeah, there's a reason the bin script is called "lein"... I was
> misspelling it myself for the first few days of working on it. =)
>
> -Phil

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

Reply via email to