On Tuesday, 3 October 2017 12:39:47 UTC+1, Furkan Yıldız wrote:
>
> I am reading a txt file containing words. I need to add these words to the
> list as char. For example
>
>
>
> I think you need to split into words first using a regex then seq each word
(def words (clojure.string/split allstri
I am reading a txt file containing words. I need to add these words to the
list as char. For example
Example txt file:
this is a
simple
test
and the result should be the following:
'((t h i s) (i s) (a) (s i m p l e) (t e s t)
these are the codes I wrote,
(def allst