technomancy

Results 253 comments of technomancy
trafficstars

That's very strange, because that line you're referencing clearly has `root` in scope on line 5572. Can you provide a repro case?

No, I don't have a Windows machine; sorry. However, it's pretty easy to do global pollution prevention using pure Lua: ```lua setmetatable(_G, {__newindex=function(_,k) error("global: "..tostring(k)) end}) print("bootstrap...") dofile("bootstrap/fennel.lua").eval("(print :ok)") print("mainline...")...

Just to follow back up here; Fennel definitely won't work on a Lua build that's been modified to prevent upvalues from being modified. If that's what's going on here, we...