Asynchronous Io

Learning from AstroPlatformer

Code Runner Challenge

asynchronous-io

View IPYNB Source
%%js
// CODE_RUNNER: asynchronous-io

console.log("Start");
setTimeout(() => console.log("After 500ms"), 500);
console.log("Waiting...");

Lines: 1 Characters: 0
Output
Click "Run" in code control panel to see output ...