secondary_thread test

This commit is contained in:
Mid 2025-09-06 15:06:23 +03:00
parent 2bf96c0f76
commit 319779a16c

11
secondary_thread.lua Normal file
View File

@ -0,0 +1,11 @@
done = false
threads.run(function()
for i = 1, 100000 do
print(i)
end
done = true
end)
while done == false do
end