mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
10 lines
136 B
TypeScript
10 lines
136 B
TypeScript
|
|
||
|
console.log("hello");
|
||
|
const foo = async () => {
|
||
|
console.log("before error");
|
||
|
throw Error("error");
|
||
|
}
|
||
|
|
||
|
foo();
|
||
|
console.log("world");
|