'调用方式,分两种 函数名称 1 Call 函数名称(2) '返回值例子 str = 函数名称1(1, 1) TracePrint "返回变量str=" & str TracePrint "函数名称1执行后返回:" & 函数名称1(2, 2) EndScript Function 函数名称(n) TracePrint "执行到这里了,n=" & n End Function Function 函数名称1(a, b) TracePrint "执行到1这里了" 函数名称1 = a + b End Function