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

ajout de l'exercice 4

parent 0b9c9caa
No related branches found
No related tags found
No related merge requests found
function deb3(xy: number []): void {
let tmp = xy[0];
xy[0] = xy[1];
xy[1] = tmp;
xy = [100, 200];
console.log(xy);
}
let xy = [10, 20];
deb3(xy);
console.log(xy);
\ 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