Node.js - the perfect example

This lovely piece of code from Ryan Dahl's JSConf presentation in 2009 illustrates so beautifully the nature of node.js:

var sys = require("sys");
setTimeout(function() {
sys.puts("world");
}, 2000);
sys.puts("hello");

Some node.js references: Bulletproof node.js coding Node.js best practices