11 lines
141 B
Lua
11 lines
141 B
Lua
|
|
local test = 10
|
|
if test == 10 then
|
|
print("first")
|
|
elseif test == 11 then
|
|
print("second")
|
|
else
|
|
print("third")
|
|
end
|
|
print("after")
|