# Test method call syntax for iterators: const lines = """abc xyz""" for x in lines.split(): stdout.write(x) #OUT abcxyz