5 lines
68 B
Python
5 lines
68 B
Python
'''
|
|
A simple addition function.
|
|
'''
|
|
def add(a, b):
|
|
return a + b
|