2022-05-05 18:25:55 +02:00

7 lines
95 B
Python

def some_test_function(a, b):
c = a + b
return c
print(some_test_function('a', 'b'))