mirror of https://github.com/arendst/Tasmota.git
15 lines
182 B
Python
15 lines
182 B
Python
|
class test
|
||
|
def init()
|
||
|
self._a = 123
|
||
|
end
|
||
|
def +()
|
||
|
return self._a
|
||
|
end
|
||
|
def ()()
|
||
|
return self._a
|
||
|
end
|
||
|
var _a
|
||
|
end
|
||
|
|
||
|
print(test() + test())
|