Skip to content

Instantly share code, notes, and snippets.

@rangercyh
Last active January 7, 2016 08:48
Show Gist options
  • Save rangercyh/8180e387fc6d72a9eece to your computer and use it in GitHub Desktop.
Save rangercyh/8180e387fc6d72a9eece to your computer and use it in GitHub Desktop.
print to file
local osprint = print
print = function(...)
local f = io.open('minifight', 'a+')
f:write(table.concat({...}, '\t') .. '\n')
f:close()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment