mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
6 lines
72 B
Python
6 lines
72 B
Python
|
def inc(x):
|
||
|
return x + 1
|
||
|
|
||
|
|
||
|
def test_answer():
|
||
|
assert inc(3) == 4
|