function add(x, y) { return x + y } a = 5 add(a, 1) print(a)
a = add(a, 1) print(a)
function add(x, y) { x = x + y return x }