Herly Quijano
Newcomer
- Joined
- Mar 19, 2021
- Messages
- 76
- Reaction score
- 9
I searched and I didn't find anything, what I ask if I can do something like this, just to put an example:
Lua:
t={
val=3
,EditVal=function()
t.val=4
end
}
print(t.val) --Should print 3
t.EditVal()
print(t.val) --Should print 4