2023-07-06 23:09:49 +08:00

12 lines
108 B
Python

class Tree:
parent = None
child = []
t1 = Tree()
t2 = Tree()
t1.child.append(t2)
del t2
gcdump()