2019-12-11 09:34:08 +00:00

4 lines
66 B
Plaintext

let add = (a: int, b: int): int => {
let c: int = a + b;
c;
};