7 lines
95 B
Python
7 lines
95 B
Python
def some_test_function(a, b):
|
|
c = a + b
|
|
return c
|
|
|
|
|
|
print(some_test_function('a', 'b'))
|