blob: eb3c26f411b7253e20e45f80ebb2c19780980858 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
-- another way to define classes. Works particularly well
-- with Moonscript
local class = require('pl.class')
local A = class{
_init = function(self, name)
self.name = name
end,
greet = function(self)
return "hello " .. self.name
end,
__tostring = function(self)
return self.name
end
}
local B = class{
_base = A,
greet = function(self)
return "hola " .. self.name
end
}
local a = A('john')
assert(a:greet()=="hello john")
assert(tostring(a) == "john")
local b = B('juan')
assert(b:greet()=="hola juan")
assert(tostring(b)=="juan")
|