mirror of https://github.com/lukechilds/node.git
Ryan Dahl
15 years ago
1 changed files with 9 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||
|
var exec = require('child_process').exec, |
||||
|
puts = require('sys').puts; |
||||
|
|
||||
|
[0, 1].forEach(function(i) { |
||||
|
exec('ls', function(err, stdout, stderr) { |
||||
|
puts(i); |
||||
|
throw new Error('hello world'); |
||||
|
}); |
||||
|
}); |
Loading…
Reference in new issue