mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-23 12:54:13 +00:00
8 lines
181 B
Lua
8 lines
181 B
Lua
![]() |
-- read environment variables as if they were global variables
|
||
|
|
||
|
local f=function (t,i) return os.getenv(i) end
|
||
|
setmetatable(getfenv(),{__index=f})
|
||
|
|
||
|
-- an example
|
||
|
print(a,USER,PATH)
|