5 lines
68 B
Plaintext
5 lines
68 B
Plaintext
let add = (a: int, b: int) : int => {
|
|
let c: int = a + b;
|
|
c;
|
|
};
|