neillovell
Programmer
Do functions have return values, a la C, C++, javascript etc. ?
I can do
Function MyFunc() As String
//... code
End Function
and the header implies a return value, but if I do
return MyString
I get an error.
I can do
Function MyFunc() As String
//... code
End Function
and the header implies a return value, but if I do
return MyString
I get an error.