11 lines
133 B
Python
11 lines
133 B
Python
from trace_commentor import Commentor
|
|
|
|
|
|
def test_binop():
|
|
|
|
@Commentor()
|
|
def target():
|
|
1 + 1
|
|
|
|
print(target())
|