split function

List<String> split(
  1. String s
)

Implementation

List<String> split(String s) {
  return Shlexer(s).toList();
}