Skip to content

Instantly share code, notes, and snippets.

@ainame
Created December 13, 2011 08:27
Show Gist options
  • Select an option

  • Save ainame/1471215 to your computer and use it in GitHub Desktop.

Select an option

Save ainame/1471215 to your computer and use it in GitHub Desktop.
var http = require('http');
// こうインデントさせたいのに
var s1 = http.createServer(function(req, res){
res.end("hello world");
});
// こうなってしまう!!
var s2 = http.createServer(function(req, res){
res.end("hello world");
});
// こう書けってことか?
var s3 = http.createServer(
function(req, res){
res.end("hello world");
}
);
s2.listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment