its also got polymorhpism,
which is something like this


Code:
Public Sub MySub(MyInt As Integer, MyInt2 As Integer)
Text1 = MyInt + MyInt2
End Sub


and


Public Sub MySub(MyStr As String, MyStr2 As String)
Text1 = MyStr & MyStr2
End Sub

those would be 2 completely different sub's
and they would be perfectly legal(by legal I mean, it will work, and wont generate an error)

I cant wait until the release of VB7