mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-12-12 04:44:48 +00:00
26 lines
260 B
Lua
26 lines
260 B
Lua
|
loadlib("stdlib.dll");
|
||
|
|
||
|
function f()
|
||
|
print("a")
|
||
|
print("b")
|
||
|
print("c")
|
||
|
print("d")
|
||
|
end
|
||
|
function g()
|
||
|
print("f")
|
||
|
end
|
||
|
function h()
|
||
|
print("f")
|
||
|
end
|
||
|
|
||
|
print("hello world")
|
||
|
|
||
|
f()
|
||
|
g()
|
||
|
h()
|
||
|
local t = { 1, 2, 3, 4 }
|
||
|
|
||
|
i = 10
|
||
|
i = 11
|
||
|
i = 17
|