4 lines
71 B
Plaintext
4 lines
71 B
Plaintext
|
fun a(a, b) { var c = a + b; return c; }
|
||
|
print a(2, 4);
|
||
|
print a(4, 6);
|