Updated AsyncFunction (markdown)

Namhyeon Go 2022-02-25 16:02:38 +09:00
parent 8e7bc4d4b5
commit 5ff003a6b5

@ -11,6 +11,7 @@ function main(args) {
[5, 4, 3, 2, 1].forEach(function(x) {
new AsyncFunction(function() {
sleep(x * 1000);
console.log(x);
}).run();
});
}