Parsing Textual Data Yourself

Data.txt
Frank 23 true
Mary  26 true
John  20 false
First, we need to read the data from the file:
declare
fun {Slurp File}
  O={New Open.file init(url:File)}
in
  try {O read(list:$ size:all)}
  finally
      {O close}
  end
end