Skip to content
Snippets Groups Projects
Commit 5836b527 authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

renaming src files

parent 8d6e51fd
No related branches found
No related tags found
No related merge requests found
function c = addTwoNumbers(a, b) function c = addTwoNumbers_myName(a, b)
% addTwoNumbers(a, b) returns the sum of a and b % addTwoNumbers(a, b) returns the sum of a and b
% c = a + b; c = a + b;
end end
function c = multiplyTwoNumbers(a, b) function c = multiplyTwoNumbers_myName(a, b)
% multiplyTwoNumbers(a, b) returns the product of a and b % multiplyTwoNumbers(a, b) returns the product of a and b
% c = a * b; c = a * b;
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment