5 lines
74 B
Python
5 lines
74 B
Python
def func(x):
|
|
return x + 1
|
|
|
|
def test_answer():
|
|
assert func(4) == 5
|