words2 : string -> string -> string list
- words2 "/" "/the/cat//sat/on//the/mat/"; > val it = ["the", "cat", "sat", "on", "the", "mat"] : string list - words2 "//" "/the/cat//sat/on//the/mat/"; > val it = ["/the/cat//sat/on//the/mat/"] : string list