diff --git a/compute.py b/compute.py new file mode 100644 index 0000000..2698f6b --- /dev/null +++ b/compute.py @@ -0,0 +1,8 @@ +""" Module to compute stuff +""" + + +def my_sum(x, y): + """ Compute the sum of 2 numbers + """ + return (x + y) #RD