function add(a, b)
print(a + b)
end
money = add(5, 4)
so I never called the function add(a,b)
I only set it as a variable so why does it print to the output. Could this be used instead of using return because I can set a value to a function without return?
|