Garden 🌻

String::chars()

Return this string as a list of individual characters.

Example
"abcc".chars() == ["a", "b", "c", "c"]
Source Code
public method chars(this: String): List<String> {
  __BUILT_IN_IMPLEMENTATION
}