diff --git a/examples/count-timer.js b/examples/count-timer.js index 7a4aff9..2ad0965 100644 --- a/examples/count-timer.js +++ b/examples/count-timer.js @@ -1,8 +1,6 @@ -var util = require('util'); - var count = 0; var id = setInterval(function () { - util.puts('Count is ' + count + '. Incrementing now.'); + console.log('Count is ' + count + '. Incrementing now.'); count++; }, 1000);