Sets a metatable for module with its __index field referring to the global environment, so that this module inherits values from the global environment. To be used as an option to function module. For example:
module ("foo", package.seeall)
The module code applies the function package.seeall to the new package (foo) and thus now package foo can access global variables.