You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
273 B
9 lines
273 B
|
|
var code = Number(process.argv[2]);
|
|
|
|
process.stdout.write('stdout\n');
|
|
process.stderr.write('stderr\n');
|
|
|
|
// Use instead of process.exit to ensure stdout/stderr are flushed
|
|
// before exiting in Windows (Tested in Node.js v0.8.7)
|
|
require('../../lib/util/exit').exit(code);
|