Skip to content
Snippets Groups Projects
Commit cc4803ab authored by Amal Alghamdi's avatar Amal Alghamdi
Browse files

add file

parent 8b1e58aa
No related branches found
No related tags found
No related merge requests found
def add(a, b):
return a + b
def test_add():
assert add(2, 3) == 5
assert add('space', 'ship') == 'spaceship'
def subtract(a, b):
return a + b # <--- fix this in step 8
# uncomment the following test in step 5
#def test_subtract():
# assert subtract(2, 3) == -1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment