Hi guys, I’m trying to make a word hunt game and tried these codes it works perfectly on simulator but on my phone only the last word is being found.
local path = system.pathForFile( "Data/a.txt" ) local file = io.open( path, "r" ) for line in file:lines() do --line = string.sub( line, 1, #line ) --table.insert(dataword,line) aword[line] = true end io.close( file ) file = nil -- search for word if aword[word] then print( "word found" ) else print( "word not found" ) end
I’ve also attached my a.txt file.
it only have these words
ad
as
asa
art
arts
ab
Please help me locate my problem, Thanks in Advance guys