pikapython/port/linux/test/python/gc/gc_circle2.py
2023-07-06 23:09:49 +08:00

10 lines
100 B
Python

class Tree:
parent = None
child = []
a = Tree()
b = Tree()
a.child.append(b)
b.parent = a