Skip to content
Snippets Groups Projects
Commit 0b9c9caa authored by FUSCIELLO Baptiste's avatar FUSCIELLO Baptiste
Browse files

maj du compte rendu et ajout de l'exercice 3

parent fb1fcf7e
No related branches found
No related tags found
No related merge requests found
function deb2(x: number, y:number): void {
const tmp = y;
y = x;
x = tmp;
console.log(x, y);
}
let x = 10;
let y = 20;
deb2(x, y);
console.log(x, y);
\ No newline at end of file
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