5 lines
61 B
Plaintext
5 lines
61 B
Plaintext
|
|
function soma(a, b) {
|
||
|
|
return a + b;
|
||
|
|
}
|
||
|
|
|
||
|
|
print(soma(2, 3));
|