I want to generate character sequence from \'a\' to \'z\'. In scala, I can generate character sequence very simply:
(\'a\' to \'z\')
But in
AFAIK, no such a fancy way as Scala. How about
(flatten (partition 1 "abcdefghijklmnopqrstuvwxyz"))
More fancy way, thanks to @rhu
(seq "abcdefghijklmnopqrstuvwxyz") ; if you copied this from an earlier version, \w and \v were in the wrong positions