String to list of single character strings
This example shows how to convert a String into a list of single characters. This could be used to enumerate a string.
Elixir calls each character a grapheme so we use the String.graphemes/1
method.
Documentation: String.graphemes/1