12 lines
124 B
Python
12 lines
124 B
Python
|
@Counter
|
||
|
def say_hello():
|
||
|
print("hello")
|
||
|
|
||
|
|
||
|
say_hello()
|
||
|
say_hello()
|
||
|
say_hello()
|
||
|
say_hello()
|
||
|
|
||
|
assert say_hello.count == 4
|