Skip to content

Instantly share code, notes, and snippets.

@davidebbo
Created February 24, 2012 21:47
Show Gist options
  • Save davidebbo/1903977 to your computer and use it in GitHub Desktop.
Save davidebbo/1903977 to your computer and use it in GitHub Desktop.
Haiku test
function Blah(message)
{
res.write(message);
}
res.writeHead(200);
for (var i=0; i<10; i++)
{
Blah('Hello, world ' + i + '\n');
}
res.end('DONE\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment