diff --git a/secondary_thread.lua b/secondary_thread.lua new file mode 100644 index 0000000..e24932c --- /dev/null +++ b/secondary_thread.lua @@ -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