> (I once tried to write a reader macro for CL which would do this, but
> the best I got was one which would read two forms and ignore the
> first.)

The usual technique in Common Lisp is

cl-user(1): (list 1 2 #+(or) 3 4)
(1 2 4)

You can improve readability by using #+:never or somesuch, but that  
leaves you open to someone pushing :never onto *features*. #+(or) is  
always false.

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