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
sub huh
'local k - workaround to avoid polluting foo's k
print k 'invalid: prints 123
k = 999
end
sub foo
local k
k = 123
huh()
print k ' invalid: prints 999
end
foo()
print k ' should be 999 since huh() changed global k
pause
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: