Some issues (https://i.imgur.com/IUbkM7g.png):
Code: Select all
' the "explicit" keyword
option explicit
' the line continuation character "_"
strText = "abc" & _
"123"
' modulo operator "mod"
b = 100 mod 30
' integer division "\"
c = 100 \ 30
' statements "execute" "executeglobal"
execute "wscript.stdout.writeline ""some text"""
executeglobal "wscript.stdout.writeline ""global version"""
' the "nothing" keyword
set objRef = nothing