yaci.lua icon indicating copy to clipboard operation
yaci.lua copied to clipboard

Yet Another Class Implementation for Lua

Results 3 yaci.lua issues
Sort by recently updated
recently updated
newest added

Hi, I'm working with Lua 5.3 and I found this piece of code really cool. I have made some changes in my copy of your code for adding new table...

This problem can be found in the README.md. It's the example under '''Instances methods'''. 1 -- Use Yaci 1.2 2 -- http://lua-users.org/wiki/YetAnotherClassImplementation 3 require("yaci") 4 5 A = newclass("A") 6...

I believe those below is a misspell. diff --git a/README.md b/README.md index 4c99d24..63eee37 100644 --- a/README.md +++ b/README.md @@ -204,10 +204,10 @@ function A:init(a) self.a = a end A.test =...