blob: 292ce5f6dc37e8b5d04e21bcfe9a2f2082068bb8 (
plain)
1
2
3
4
5
6
7
8
|
export function add(a: number, b: number): number {
return a + b;
}
// Learn more at https://docs.deno.com/runtime/manual/examples/module_metadata#concepts
if (import.meta.main) {
console.log("Add 2 + 3 =", add(2, 3));
}
|