Files
Kmake/test/fixtures/loop.js

11 lines
170 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
var t = 1;
var k = 1;
console.log('A message', 5);
while (t > 0) {
if (t++ === 1000) {
t = 0;
console.log(`Outputted message #${k++}`);
}
}
process.exit(55);