mirror of
https://github.com/denoland/deno.git
synced 2024-12-20 14:24:48 -05:00
4 lines
110 B
TypeScript
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;
|
|
}
|