8 lines
122 B
Python
8 lines
122 B
Python
|
|
def foo(): pass
|
||
|
|
# declaration: function: 0, 0
|
||
|
|
|
||
|
|
def bar():
|
||
|
|
# declaration: function, 3, 0
|
||
|
|
foo()
|
||
|
|
# reference: call, 5, 4
|