Client for playing 300 publicly available Sokoban puzzles on a computer or phone.
eval_all = function()
	for _,f in ipairs(love.filesystem.getDirectoryItems(Directory)) do
		local buf = love.filesystem.read(Directory..f)
		local status, error = live.eval(buf, f)
		if not status then
			return error
		end
	end
end