Skip to content

Instantly share code, notes, and snippets.

@tst2005
Created February 20, 2017 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tst2005/d309a0a5b7570ca0455fb1e71bcd276d to your computer and use it in GitHub Desktop.
Save tst2005/d309a0a5b7570ca0455fb1e71bcd276d to your computer and use it in GitHub Desktop.
20170220
local data = ???
for line in data:read("*l") do -- OR data:match("([^\n])\n") do
for word in line:match("(%S+)") do
i=i+1
end
i=i+10
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment