Am I correct in that you can not do the following in VBScript?
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.Code:my $foo = 1 == 0;
I could do this in VBScript...
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.Code:Dim myFoo
If 1 = 0 Then
myFoo = True
Else
myFoo = False
End If
