trace_commentor/experiment.py
2024-04-22 16:43:21 +08:00

15 lines
224 B
Python

from tests.test_utils import *
from trace_commentor.check import Check
def test():
# @Commentor()
@Check()
def target(a, d=1, *b, c, k=1):
return a + k
print(target(1, 2, 3, 4, c=5, k=2))
test()