I want to generate character sequence from \'a\' to \'z\'. In scala, I can generate character sequence very simply:
(\'a\' to \'z\')
But in
According to this StackOverflow Answer a simple solution would be:
(map char (range 97 123))