Chrissirhc
Programmer
I noticed today that I can call a function as follows:
myFunction a, b
rather than
result = myFunction (a,b)
I used the first line because in this case I didn't really care what the return result was. In fact the function used to be a sub until I changed it today to meet some new requirement.
Is using the above 1st line ok?
Thanks in advance,
Chris
myFunction a, b
rather than
result = myFunction (a,b)
I used the first line because in this case I didn't really care what the return result was. In fact the function used to be a sub until I changed it today to meet some new requirement.
Is using the above 1st line ok?
Thanks in advance,
Chris