Files
Kmake/test/fixtures/debugger/alive.js

6 lines
71 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
let x = 0;
function heartbeat() {
++x;
}
setInterval(heartbeat, 50);