Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

testInterp.vbs 258B

1 year ago
123456789101112
  1. set o = CreateObject("Python.Interpreter")
  2. if o.Eval("1+1") <> 2 Then
  3. WScript.Echo "Eval('1+1') failed"
  4. bFailed = True
  5. end if
  6. if bFailed then
  7. WScript.Echo "*********** VBScript tests failed *********"
  8. else
  9. WScript.Echo "VBScript test worked OK"
  10. end if