async.waterfall [ (callback) -> callback null, "one", "two" (arg1, arg2, callback) -> callback null, "three" (arg1, callback) -> callback null, "done" ]
(code snippet from https://groups.google.com/group/coffeescript/browse_thread/t... )