pikapython/test/python/builtin/class_script.py

10 lines
112 B
Python
Raw Normal View History

2023-05-14 23:54:57 +08:00
class Obj1:
def test(self):
print("Obj1.test")
class Test:
a = Obj1()
a.test()
t = Test()