mirror of
https://github.com/cupcakearmy/marp-template.git
synced 2024-11-01 11:14:18 +01:00
6 lines
80 B
TypeScript
6 lines
80 B
TypeScript
function add(a: number, b: number) {
|
|
return a + b
|
|
}
|
|
|
|
const c = add(1, 2) // 3
|