4 lines
110 B
Text
4 lines
110 B
Text
stack = {}
|
|
table.insert(stack, 11) -- push
|
|
table.remove(stack) -- pop
|
|
print(#stack == 0) -- empty
|