lauchpioos/index.ts

6 lines
85 B
TypeScript
Raw Normal View History

2021-11-25 20:56:15 +01:00
function sum(a: number, b: number)
{
return a + b;
}
2021-11-25 22:06:50 +01:00
console.log(sum(420, 69));