TypeScript/tests/projects/sample1/core/index.ts
Ryan Cavanaugh 76d2ba64df Testing WIP
2018-05-21 21:24:29 -07:00

3 lines
181 B
TypeScript

export const someString: string = "HELLO WORLD";
export function leftPad(s: string, n: number) { return s + n; }
export function multiply(a: number, b: number) { return a * b; }