It is close to VBA but the biggest thing to note is that there is no
host application, so if you want to work with an Office application, you
have to connect explicitly to it, there is no implicit Application.
You should also note that variables are not typed at declaration, they
are all variants, so just do something like
Dim myNum
Dim myString
etc.