I just starting to try and teach myself Clojure.  Kindly let me know if 
there is a more appropriate place I should post simple questions.


(def s '(1 1 1 4 99) 

(take-while  #(= (first s) %) s)  ; works fine: (1 1 1)

(take-while  #(= (first %) %) s)  ; IllegalArgumentException Don't know how 
to create ISeq from: java.lang.Long  clojure.lang.RT.seqFrom (RT.java:505)

It appears as though "%" cannot be used within a nested function - but this 
works 

(#(prn (+ 3 %) % ) 5) ; works fine:  8 5

Does anyone know what is the rule of statement construction being violated?

~thanks

-- 
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/d/optout.

Reply via email to