testInterp.vbs 258 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 set o = CreateObject("Python.Interpreter") if o.Eval("1+1") <> 2 Then WScript.Echo "Eval('1+1') failed" bFailed = True end if if bFailed then WScript.Echo "*********** VBScript tests failed *********" else WScript.Echo "VBScript test worked OK" end if