Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Vanja Vlasov
git.practice
Commits
5836b527
Commit
5836b527
authored
Jan 22, 2019
by
Laurent Heirendt
✈
Browse files
renaming src files
parent
8d6e51fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/firstCommit/addTwoNumbers.m
→
src/firstCommit/addTwoNumbers
_myName
.m
View file @
5836b527
function
c
=
addTwoNumbers
(
a
,
b
)
function
c
=
addTwoNumbers
_myName
(
a
,
b
)
% addTwoNumbers(a, b) returns the sum of a and b
%
c = a + b;
c
=
a
+
b
;
end
src/secondCommit/multiplyTwoNumbers.m
→
src/secondCommit/multiplyTwoNumbers
_myName
.m
View file @
5836b527
function
c
=
multiplyTwoNumbers
(
a
,
b
)
function
c
=
multiplyTwoNumbers
_myName
(
a
,
b
)
% multiplyTwoNumbers(a, b) returns the product of a and b
%
c = a * b;
c
=
a
*
b
;
end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment