For example, if I have a function in VBscript:
Function sum(a, b, c) sum = a + b + c End function
Now, in the main, I make two variables and pass them into the function sum
as the following:
Dim a : a = 1 Dim b : b = 2 Call sum(a, b)
Will this work or not, and why? Thanks.