-- Создадим функцию, которая с задержкой будет выводить текст | |
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) |