Re: Beginners question about Don't know how to create ISeq from: Symbol

2010-04-20 Thread uap12
Tanks, i was total focus on the (make-lotto), // Anders On 20 Apr, 02:53, Michael Gardner gardne...@gmail.com wrote: On Apr 19, 2010, at 4:52 PM, uap12 wrote: (defn -main    (make-lotto)) ([] (-main ))) You're missing the empty arglist in your definition of -main. It should be: (defn

Beginners question about Don't know how to create ISeq from: Symbol

2010-04-19 Thread uap12
I try to write my first program, but efter put the (take 7 (repeatedly get-number)) in a function i get an error, i have search on it but can't figure why, could some on tell my what is wrong, and a explanation (att a basic level *smile*) The error Don't know how to create ISeq from: Symbol ;The

Re: Beginners question about Don't know how to create ISeq from: Symbol

2010-04-19 Thread Michael Gardner
On Apr 19, 2010, at 4:52 PM, uap12 wrote: (defn -main (make-lotto)) ([] (-main ))) You're missing the empty arglist in your definition of -main. It should be: (defn -main [] (make-lotto)) -- You received this message because you are subscribed to the Google Groups Clojure group. To