mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 01:58:05 -05:00
5 lines
110 B
TypeScript
5 lines
110 B
TypeScript
|
// This is renamed to `add()` in 1.0.0.
|
||
|
export function sum(a: number, b: number): number {
|
||
|
return a + b;
|
||
|
}
|