I have this table
stuff = {
fruit = {
yellow = {
"Banana"
},
red = {
"Apple"
}
},
city = {
"Toronto"
},
name = {
"Claudia"
}
}
function scope(tbl,depth)
for k, v in...
Hello,
I´m calling a function in lua to get some data via ubus. I need to show this info in a web. The table this method returns is the following. The problem is lua is just getting some of the data, not all. I can´t get the float values. When I iterate the table c_r, c_s, c_t and soc don´t...
I searched and I didn't find anything, what I ask if I can do something like this, just to put an example:
t={
val=3
,EditVal=function()
t.val=4
end
}
print(t.val) --Should print 3
t.EditVal()
print(t.val) --Should print 4
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.