aboutsummaryrefslogtreecommitdiff
path: root/deps/node-inspect/examples/alive.js
blob: 3cf557b053981e612caeee66b0080746b5133e03 (plain)
1
2
3
4
5
6
'use strict';
let x = 0;
function heartbeat() {
  ++x;
}
setInterval(heartbeat, 50);