This website works better with JavaScript.
Home
Explore
Help
Sign In
lukechilds
/
node
mirror of
https://github.com/lukechilds/node.git
Watch
1
Star
0
Fork
0
Code
Issues
Projects
Releases
Wiki
Activity
13261
Commits
131
Branches
446
Tags
325 MiB
Tree:
048c0f4738
node
/
test
/
fixtures
/
print-10-lines.js
4 lines
62 B
Raw
Normal View
History
SIGPIPE on stdout should kill the process by default
15 years ago
for
(
var
i
=
0
;
i
<
10
;
i
++
)
{
:%s/sys.puts/console.log/g and there was much rejoicing
15 years ago
console
.
log
(
'count '
+
i
)
;
SIGPIPE on stdout should kill the process by default
15 years ago
}