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
globals= {"foo", "bar"}, -- these globals can be set and accessed.read_globals= {"baz", "quux"} -- these globals can only be accessed.
It later mentions the new_ variables:
In config, globals, new_globals, read_globals, and new_read_globals can also contain definitions in same format:
But doesn't explain what they do.
I would guess these are their purpose:
globals -- these globals can be set and accessed.
read_globals -- these globals can only be accessed.
new_globals -- these globals can be set but not accessed.
new_read_globals -- these globals can be set and accessed.
However, that means globals and new_read_globals are the same. Possibly, "new_" means to append to another list -- use these globals in addition to std?
Custom sets of globals describes globals and read_globals:
It later mentions the new_ variables:
But doesn't explain what they do.
I would guess these are their purpose:
However, that means globals and new_read_globals are the same. Possibly, "new_" means to append to another list -- use these globals in addition to std?
Also, Config options says:
Which maybe means I shouldn't set the new_ variables? Why are they there?
The text was updated successfully, but these errors were encountered: