View difference between Paste ID: U6G3udQ1 and 3yfdZrUe
SHOW: | | - or go back to the newest paste.
1
local path = system.pathForFile("wordlist.txt",system.ResourceDirectory)
2
3
local function dictionary(path)
4
	local dictTable = {}
5
	for line in io.lines(path) do
6
		dictTable[line] = true
7-
--		print(tostring(line))
7+
		print(tostring(line))
8
	end
9
	return dictTable
10
end
11
12-
return dictionary(path)
12+
local loader = coroutine.wrap(dictionary)
13
14
return loader(path)