Updated examples and README to use proper syntax

This commit is contained in:
2021-01-12 17:49:16 -06:00
parent ab86e19cfe
commit 32162ce50c
4 changed files with 15 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
proto test
function __init(self, x)
self.setArg(x)
self:setArg(x)
end
function __tostring(self)
@@ -22,7 +22,7 @@ var t = test(1)
for (var x = 1; x < 1000; x = x + 1) do
for (var i = 1; i < 100; i = i + 1) do
t.setArg(i)
t:setArg(i)
print(t)
end