Re: Practical Clojure

2012-04-13 Thread wschnell
Hi, you are not alone. This book is for reading again and again. -- 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

Re: Jesus, how the heck to do anything?

2011-03-23 Thread wschnell
Hi, I started with NetBeans and Enclojure and never used anything else. You can just go File/New Project, say this is going to be a Clojure project, give it a name. This will be your new active project in the projects tree on the left. There you go to Source Packages, down the tree to defpackage.c

Re: immutable defs?

2009-10-06 Thread wschnell
from the API docs: (defonce myname "Walter") ; ... (defonce myname "Schnell") => nil myname => Walter hope this helps ;-) On 2 Okt., 16:29, Mark wrote: > Is there a way to make a declaration in Clojure that cannot be rebound > later?  Ideally, I'd like something that fails if I try to do this: