7 lines
120 B
Python
7 lines
120 B
Python
def foo(): pass
|
|
# definition: function: 0, 0
|
|
|
|
def bar():
|
|
# definition: function, 3, 0
|
|
foo()
|
|
# reference: call, 5, 4
|