diff --git a/src/firstCommit/addTwoNumbers_myName.m b/src/firstCommit/addTwoNumbers_myName.m index 5df104e420ffdac2e9b2f6a4e7f994bf9ac00124..8db0b2e5777ecaba056d21be3bfd16207aae3bca 100644 --- a/src/firstCommit/addTwoNumbers_myName.m +++ b/src/firstCommit/addTwoNumbers_myName.m @@ -1,5 +1,5 @@ function c = addTwoNumbers_myName(a, b) % addTwoNumbers_myName(a, b) returns the sum of a and b -c = a - b; +c = a + b; end