6 lines
85 B
TypeScript
6 lines
85 B
TypeScript
export const x = 5;
|
|
|
|
export function add(x: number, y: number) {
|
|
return x + y;
|
|
}
|