mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 15:40:39 +00:00

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();
|