mirror of
https://github.com/arendst/Tasmota.git
synced 2026-03-24 07:57:21 +01:00
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())
|