Welcome to mirror list, hosted at ThFree Co, Russian Federation.

echo.js « fixtures « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 429541b5849bd48cf9d95ea9faae908aaad5a7e1 (plain)
1
2
3
4
5
6
7
8
9
10
const common = require('../common');
const assert = require('assert');

process.stdout.write('hello world\r\n');

var stdin = process.openStdin();

stdin.on('data', function(data) {
  process.stdout.write(data.toString());
});