Techdocs / testing /test.py
HemanthSai7's picture
CLI testing complete
08fce87
raw
history blame contribute delete
196 Bytes
def add(a, b):
"""Computes and returns the sum of two numbers.
Args:
a (int): The first number.
b (int): The second number.
Returns:
int: The sum of a and b.
"""
return a + b