Thanks for all the responses! 

This discussion will definitely help me write better code. This was 
especially helpful:

over time I've moved to using 
> small, private top-level functions instead because I want to focus on 
> the names of the _functionality_ rather than the names of intermediate 
> _data_


As was this:

because it lets me do:
>     (let [ x (subexpression)
>             _ (println "The value of x is" x)
>             res (main-expression) ]
>         (println "The value of the whole expression is" res)
>         res)
>

Thanks!
Daniel

-- 
-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to