node/test/fixtures/print-10-lines.js
Ryan Dahl ba792ea202 :%s/sys.puts/console.log/g
and there was much rejoicing
2010-06-23 20:05:29 -07:00

4 lines
90 B
JavaScript

puts = require('sys').puts;
for (var i = 0; i < 10; i++) {
console.log('count ' + i);
}