mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 17:16:39 +02:00
9 lines
107 B
JavaScript
9 lines
107 B
JavaScript
function add_one(x) {
|
|
return x + 1;
|
|
}
|
|
let i = 0;
|
|
while (i < 60000) {
|
|
i = add_one(i);
|
|
}
|
|
console.log(i);
|