lauchpioos/index.ts

6 lines
82 B
TypeScript
Raw Normal View History

2021-11-25 19:56:15 +00:00
function sum(a: number, b: number)
{
return a + b;
}
console.log(sum(4, 5));