5 lines
56 B
Plaintext
5 lines
56 B
Plaintext
fun add(a,b,c) {
|
|
return a + b + c;
|
|
}
|
|
print add(1,2,3);
|