Am I correct in that you can not do the following in VBScript?

Code:
my $foo = 1 == 0;
I'm not 100% sure that you can do that in Perl, but I don't see why not. I used it as an example because VBScript doesn't have a seperate logic operator.

I could do this in VBScript...

Code:
Dim myFoo
If 1 = 0 Then
  myFoo = True
Else
  myFoo = False
End If
But that is so annoying, relatively speaking. I just wanted to make sure there wasn't some sort of inline evaluation that I wasn't aware of.