/** * Split a string using the standard library */ func split(str: string) -> vec { str.split(' ') }