1 | function empty() |
2 | print ( "table empty" ) |
3 | end |
4 | -- Place i need help with -- |
Using #Table will give you the length of it.
1 | table = { 182 } |
2 |
3 | function is_empty(x) |
4 | if #table< = 0 then |
5 | return true |
6 | end |
7 | end |
`
1 | if #table < 1 then |
2 | print ( "Table is empty." ) |
3 | end |
Hope that helped^
You can do a few things.
01 | local t = { } |
02 |
03 | if #t < 1 then |
04 | --do code |
05 | end |
06 |
07 | if not t [ 1 ] then |
08 | --do code |
09 | end |
10 |
11 | for i,v in pairs (t) do |
12 | if not v then |
13 | --do code |
14 | end |
15 | end |