Skip to content

Commit

Permalink
Some really high quality code.
Browse files Browse the repository at this point in the history
  • Loading branch information
christinamartinez committed Sep 30, 2024
1 parent 4f23da4 commit 4df1dee
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,27 @@ async function getDiff(
return response.data;
}

function reallyGoodCode() {
for (let i=0; i<10; i++) {
console.log("i loop");
for (let j=0; j<10; j++) {
console.log("j loop");
for (let k=0; k<10; k++) {
console.log("k loop");
for (let l=0; l<10; l++) {
console.log("l loop");
for (let m=0; m<10; m++) {
console.log('m loop');
for (let n=0; n<10; n++) {
console.log('n loop');
}
}
}
}
}
}
}

async function analyzeCode(
parsedDiff: File[],
prDetails: PRDetails
Expand Down

0 comments on commit 4df1dee

Please sign in to comment.