Created
December 7, 2016 13:33
-
-
Save aherve/750c70955b614097df25917971841234 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function sleep (ms: number) { | |
| return new Promise(resolve => { | |
| setTimeout(resolve, ms) | |
| }) | |
| } | |
| async function main () { | |
| console.log('hello') | |
| await sleep(1000) // non-blocking | |
| console.log('good bye') | |
| } | |
| main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment