Iterate over the lines in a file.
iterator = love.filesystem.lines( name )
string name
function iterator
local highscores = {} for line in love.filesystem.lines("highscores.lst") do table.insert(highscores, line) end