Updated gitignore

This commit is contained in:
Ryan Ward 2022-01-02 11:25:42 -05:00
parent de34b9dc59
commit 6842147522
2 changed files with 4 additions and 12 deletions

15
.gitignore vendored
View File

@ -1,15 +1,6 @@
test2.lua
*.mp3
*.exe
*.dll
lanestestclient.lua
lanestest.lua
sample-node.lua
sample-master.lua
Ayn Rand - The Virtue of Selfishness-Mg4QJheclsQ.m4a
Atlas Shrugged by Ayn Rand Audiobook-9s2qrEau63E.webm
test.lua
test.lua
*.code-workspace *.code-workspace
*.dat *.dat
*test*
test*
*test

View File

@ -1,5 +1,6 @@
lanes = require("lanes").configure({allocator="protected",verbose_errors=""}) lanes = require("lanes").configure({allocator="protected",verbose_errors=""})
local multi,thread = require("multi"):init() local multi,thread = require("multi"):init()
function sleep(n) function sleep(n)
if n > 0 then os.execute("ping -n " .. tonumber(n+1) .. " localhost > NUL") end if n > 0 then os.execute("ping -n " .. tonumber(n+1) .. " localhost > NUL") end
end end