0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00
deno/testdata/004_set_timeout.ts

6 lines
79 B
TypeScript
Raw Normal View History

2018-05-18 11:49:28 -04:00
setTimeout(function() {
console.log("World");
}, 10);
console.log("Hello");