how to create a function and call it in typescript code example
Example: typescript annotate return type
function add(x: number, y: number): number {
return x + y;
}
function add(x: number, y: number): number {
return x + y;
}