mirror of
https://github.com/denoland/deno.git
synced 2025-12-23 08:48:24 +00:00
8 lines
89 B
JavaScript
8 lines
89 B
JavaScript
function add(a, b) {
|
|
return a + b;
|
|
}
|
|
|
|
add(1, 2);
|
|
add(3, 4);
|
|
|
|
throw new Error("boom!");
|