Try playing with this code: ```python from meshed import DAG, FuncNode def foo(x): return x + 1 t = foo def foo(y): return y * 2 tt = foo d = DAG([t, tt]) d.func_nodes f, ff = d.func_nodes f.func_label, ff.func_label ``` <img width="592" alt="image" src="https://user-images.githubusercontent.com/1906276/189907807-963a100c-b9d0-4abf-b90a-8ae32073adbd.png">