Guest User

Untitled

a guest
Oct 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. http.createServer(function (req, res) {
  2.  
  3. res.writeHead(200, {'Content-Type': 'text/plain'});
  4.  
  5. process.nextTick(function () {
  6. var result = fibonacci(40);
  7. res.end(result);
  8. });
  9.  
  10. }).listen(1337, "127.0.0.1");
Add Comment
Please, Sign In to add comment