Files
pebble/examples/12_function_def.peb

8 lines
80 B
Plaintext

fun add(a, b) {
let c = a + b
print(c)
}
add(1, 3)
add(4, 6)
add(-3, 9)