mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
18 lines
304 B
JavaScript
18 lines
304 B
JavaScript
function write() {
|
|
try {
|
|
process.stdout.write('Hello, world\n');
|
|
} catch (ex) {
|
|
throw new Error('this should never happen');
|
|
}
|
|
setImmediate(function() {
|
|
write();
|
|
});
|
|
}
|
|
|
|
process.stdout.on('error', function(er) {
|
|
console.error(JSON.stringify(er));
|
|
process.exit(42);
|
|
});
|
|
|
|
write();
|