moonloader / moonloader_thread.lua
NMizu's picture
Create moonloader_thread.lua
a6d086a verified
raw
history blame
546 Bytes
-- Создадим функцию, которая с задержкой будет выводить текст
function printText()
print("printText: One")
wait(1000)
print("printText: Two")
wait(1000)
print("printText: Bye!")
end
function secondPrintText()
print("secondPrintText: One")
wait(500)
print("secondPrintText: Two")
wait(1500)
print("secondPrintText: Bye!")
end
-- Создадим оба потока одновременно
lua_thread.create(printText)
lua_thread.create(secondPrintText)