Forked from
R3 / school / git / basic-practice
69 commits behind the upstream repository.
-
Lemmer Elassal authoredLemmer Elassal authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
addTwoNumbers_Lemmer.m 98 B
function c = addTwoNumbers(a, b)
% addTwoNumbers(a, b) returns the sum of a and b
c = a + b;
end