cirosantilli/nodejs/infinite_hello.js

nodejs/infinite_hello.js
#!/usr/bin/env node
while (true) {
  console.log('hello');
}