-1
我們試圖從單個函數返回多個值。函數在VBScript中返回多個值嗎?
Sub testing()
a = 2
b = 5
temp = func(a, b)
MsgBox temp
End Sub
Function func(a, b)
'we are validating the multiple returns from the function
func = a + b
func = a * b
func = b/a
End Function