mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-20 11:09:21 +01:00
11 lines
253 B
Lua
11 lines
253 B
Lua
local event = require "event"
|
|
|
|
while true do
|
|
local eventData = { event.pull() }
|
|
print("Ивент: " .. tostring(eventData[1]))
|
|
for i = 2, #eventData do
|
|
print("Аргумент" .. (i) .. ": " .. tostring(eventData[i]))
|
|
end
|
|
print(" ")
|
|
end
|