Files
vscode-extension-samples/webpack-sample/src/math.ts

14 lines
343 B
TypeScript
Raw Normal View History

2018-09-19 17:54:55 +02:00
/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
'use strict';
export function add(a: number, b: number): number {
return a + b;
}
export function sub(a: number, b: number): number {
return a - b;
}