mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
e30ad77ffa
Implemented in https://github.com/denoland/deno_config/pull/74 Closes https://github.com/denoland/deno/issues/24420
3 lines
75 B
TypeScript
3 lines
75 B
TypeScript
export function subtract(a: number, b: number): number {
|
|
return a - b;
|
|
}
|