trace_commentor/experiment.py
2024-04-20 04:43:47 +08:00

19 lines
291 B
Python

from tests.test_utils import *
def test():
@Commentor()
def target():
# return only odd numbers - 1,3,5,7,9
for x in range(10):
# Check if x is even
if x % 2 == 0:
continue
print(x)
print(target())
test()