[String] words(String s)
Arguments
s: The string to split
Usage
Splits a String into whitespace separated words.
x = "The quick brown fox jumps
over the lazy dog";
ws = words(x); // ["The","quick","brown","fox","jumps",
// "over","the","lazy","dog"];