5 lines
64 B
Plaintext
5 lines
64 B
Plaintext
|
int add(int a, int b) {
|
||
|
return a + b;
|
||
|
}
|
||
|
|
||
|
println(add(5, 8));
|