initial commit

This commit is contained in:
Martin Felis
2013-12-04 00:34:52 +01:00
commit 73d1ceb81d
131 changed files with 29964 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
-- 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)