Add benchmarks

This commit is contained in:
Stone_Red
2026-03-05 20:20:56 +01:00
parent 8ef621e61b
commit 4bcaf30d9e
10 changed files with 159 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
let i = 0;
let s = 0;
while (i < 200000) {
i += 1;
s += i;
}
console.log(s);