12 lines
97 B
Lua
12 lines
97 B
Lua
|
|
||
|
|
||
|
local numberVariable = 0
|
||
|
|
||
|
local function test()
|
||
|
|
||
|
print(numberVariable .. ";")
|
||
|
|
||
|
end
|
||
|
|
||
|
|
||
|
test()
|