4 lines
66 B
Plaintext
4 lines
66 B
Plaintext
![]() |
let add = (a: int, b: int): int => {
|
||
|
let c: int = a + b;
|
||
|
c;
|
||
|
};
|