create project:
cd folder
deno init
cd folder
deno init
ts
export function add(a: number, b: number): number {
return a + b;
}
// Learn more at https://docs.deno.com/runtime/manual/examples/module_metadata#concepts
// 布尔值 import.meta.main 会让您知道当前模块是否是程序入口点。
if (import.meta.main) {
console.log("Add 2 + 3 =", add(2, 3));
}
export function add(a: number, b: number): number {
return a + b;
}
// Learn more at https://docs.deno.com/runtime/manual/examples/module_metadata#concepts
// 布尔值 import.meta.main 会让您知道当前模块是否是程序入口点。
if (import.meta.main) {
console.log("Add 2 + 3 =", add(2, 3));
}