Skip to content
Snippets Groups Projects
Commit 13dbae91 authored by Aurélien's avatar Aurélien
Browse files

Ex7

parent bbf7bc92
No related branches found
No related tags found
No related merge requests found
deb7(5,3);
function deb7(x: number, y: number): number {
let val = 0;
for (let i = 0; i < y; i++) {
val += x;
}
return val;
}
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