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

2
.gitignore vendored
View File

@ -11,4 +11,4 @@ Atlas Shrugged by Ayn Rand Audiobook-9s2qrEau63E.webm
test.lua
test.lua
*.code-workspace
*.dat
*.dat

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?
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!"