String::chars()
Return this string as a list of individual characters.
"abcc".chars() == ["a", "b", "c", "c"]
public method chars(this: String): List<String> { __BUILT_IN_IMPLEMENTATION }