1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-11 01:58:05 -05:00
denoland-deno/tests/registry/jsr/@denotest/add/0.2.0/mod.ts

5 lines
110 B
TypeScript
Raw Normal View History

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