Exercise: compare rows
- Create an iterable that given two files will return true for each line where the first space in the first file is earlier than the first space in the second file. So
- given: "ab cd" vs "abc d" the value is true
- given: "ab cd" vs "ab cd" the value is false
- given: "ab cd" vs "a bcd" the value is false