mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-07-19 09:15:57 +00:00
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
export function add(a: number, b: number): number {
|
|
return a + b;
|
|
}
|
|
|
|
// Learn more at https://deno.land/manual/examples/module_metadata#concepts
|
|
if (import.meta.main) {
|
|
console.log("Add 2 + 3 =", add(2, 3));
|
|
}
|