I want to generate character sequence from 'a' to 'z'. In scala, I can generate character sequence very simply:
('a' to 'z')
But in clojure, I end up with the following code:
(->> (range (int \a) (inc (int \z))) (map char))
or
(map char (range (int \a) (inc (int \z))))
It seems to me verbose. Are there any better ways to do it?