Modified the changes.md

This commit is contained in:
2020-02-14 11:30:15 -05:00
parent 4578c816d3
commit cf6cdcfc6e
3 changed files with 1841 additions and 1413 deletions
+1838 -1410
View File
File diff suppressed because one or more lines are too long
+1 -1
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?
thread.sleep(1)
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
})
example["test"] = "We set a variable!"