mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2026-09-14 11:06:16 +05:00
afaef
This commit is contained in:
parent
d7f1670ff5
commit
e21bdf6c9c
@ -1,10 +1,10 @@
|
||||
local event = require "event"
|
||||
|
||||
while true do
|
||||
local cyka = {event.pull()}
|
||||
print("Ивент: "..cyka[1])
|
||||
for i=2,#cyka do
|
||||
print("Аргумент "..(i).." = "..cyka[i])
|
||||
local eventData = { event.pull() }
|
||||
print("Ивент: " .. tostring(eventData[1]))
|
||||
for i = 2, #eventData do
|
||||
print("Аргумент " .. (i) .. ": " .. tostring(eventData[i]))
|
||||
end
|
||||
print(" ")
|
||||
end
|
||||
|
||||
Loading…
Reference in New Issue
Block a user