7 lines
112 B
Python
7 lines
112 B
Python
def foo(): pass
|
|
# <- definition.function
|
|
|
|
def bar():
|
|
# <- definition.function
|
|
foo()
|
|
# <- reference.call
|