Files
Oleg Efimov 093dfaf801 GJSLint all tests, only 3 long lines left in test-url.js
test/simple/test-url.js:31:(0110) Line too long (82 characters).
test/simple/test-url.js:39:(0110) Line too long (85 characters).
test/simple/test-url.js:40:(0110) Line too long (92 characters).
2010-12-05 15:42:41 -08:00

15 lines
291 B
JavaScript

var common = require('../common');
var assert = require('assert');
common.print('hello world\r\n');
var stdin = process.openStdin();
stdin.addListener('data', function(data) {
process.stdout.write(data.toString());
});
stdin.addListener('end', function() {
process.stdout.end();
});