8 lines
80 B
Plaintext
8 lines
80 B
Plaintext
fun add(a, b) {
|
|
let c = a + b
|
|
print(c)
|
|
}
|
|
|
|
add(1, 3)
|
|
add(4, 6)
|
|
add(-3, 9) |