You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
temporarily x=3, obj.property=4, ...
...
endTemporarily
# Equivalent to
local old_x = x
x = 3
local old_property = obj.property
obj.property = 4
...
obj.property = old_property
x = old_x