code
local oldTerm = {}
for k,v in pairs(term) do
oldTerm[k] = v
end
term.write = function( ... )
oldTerm.write( unpack(args) )
end
the top half is perfectly fine. when I add the function into the program it crashes the computer, no error, just black screen. what have I done wrong?












