-- Others
arg = true, -- command line argument
}
local result = true
for line in f:lines() do
local m = line:match("; _ENV \"(%w+)\"")
if m then
if not known_global[m] then
print("Unknown global variable: ", m)
result = false
end
end
end
if result then
os.exit(0)
else
os.exit(1)
end