rawset (table, index, value)
Sets the value of table [index] to value, without invoking metamethods. 'table' must be a table, and 'index' must not be nil. rawset (_G, "test", 42) print (test) --> 42
rawset (_G, "test", 42) print (test) --> 42