Modified the changes.md

This commit is contained in:
Ryan Ward 2020-02-14 11:30:15 -05:00
parent 4578c816d3
commit cf6cdcfc6e
3 changed files with 1841 additions and 1413 deletions

File diff suppressed because one or more lines are too long

View File

@ -56,7 +56,7 @@ setmetatable(example,{
-- This works by returning a table with a __call metamethod. Will this work? Will lua detect this as a function or a table? -- This works by returning a table with a __call metamethod. Will this work? Will lua detect this as a function or a table?
thread.sleep(1) thread.sleep(1)
return "You got a string" return "You got a string"
end,true) -- Tell the code to force a wait and to identify as a function. We need to do this for metamethods end,true) -- Tell the code to force a wait. We need to do this for metamethods
-- If we don't pass true this is a table with a __call metamethod -- If we don't pass true this is a table with a __call metamethod
}) })
example["test"] = "We set a variable!" example["test"] = "We set a variable!"