read txt file

2009-08-21 Thread DemAS
Hi all, I have created the function that read a txt file. I have a very little experience in clojure and I will be thankfull for any correction and ideas. This is source code: (defn create-freader [filename] (def f-reader (new java.io.FileReader filename)) f-reader) (defn create-br

difference between into & concat

2009-10-18 Thread DemAS
Hi all, I'm just wondering if there is any difference between 'into' and 'concat' ? (def x (range 1 100 5)) (def y (range 1 100 10)) (concat x y) (into x y) I have found only one difference - the 'concat'-functon sorts resulted list. --~--~-~--~~~---~--~~ You rec