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