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 | coroutine.yield(dictTable) | |
| 6 | for line in io.lines(path) do | |
| 7 | dictTable[line] = true | |
| 8 | print(tostring(line)) | |
| 9 | - | return dictTable |
| 9 | + | |
| 10 | end | |
| 11 | ||
| 12 | local loader = coroutine.wrap(dictionary) | |
| 13 | ||
| 14 | return loader(path) |