Re: Symetric function to prn

2010-05-24 Thread Michael Jaaka
Thank you clojure people!!! -- 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 thi

Re: Symetric function to prn

2010-05-24 Thread Heinz N. Gies
Well read can (read) from a stream and if you don't serialize your data structure in one huge pile: [1] [1] [1] [1] vs. [[1] [1] [1] [1]] you can read it lazily. See http://github.com/Licenser/stupiddb/blob/master/src/stupiddb/core.clj#L75 for an example. regards, Heinz On May 24, 2010, at

Re: Symetric function to prn

2010-05-24 Thread Stuart Halloway
Isn't this just 'read' ? Stu Hello! I need symmetric function to prn (reads line of expression from binded *in* and constructs data structure - just like load-string does it now from a string). Right now I store data with prn to a file. Then read it with buffered reader and load-string. Read