1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-20 14:24:48 -05:00
denoland-deno/tests/testdata/jsr/registry/@denotest/add/0.2.0/mod.ts
2024-02-14 22:48:39 +00:00

4 lines
110 B
TypeScript

// This is renamed to `add()` in 1.0.0.
export function sum(a: number, b: number): number {
return a + b;
}