1. iterator split(s: string): string = discard
    2.  
    3. assert typeof("a b c".split) is string
    4. assert typeof("a b c".split, typeOfProc) is seq[string]