How do I create a non-blocking asynchronous function? Below is what I\'m trying to achieve but my program is still blocking...
var sys = require(\"sys\"); f
This line:
while(true);
isn't "blocking", it's just busy, forever.