mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
9 lines
96 B
Python
9 lines
96 B
Python
from context import bonob
|
|
|
|
def f(x):
|
|
return x + 1
|
|
|
|
def test_answer():
|
|
assert f(4) == 5
|
|
|