LOTUSSCRIPT LANGUAGE
Dim tomato As Variant, turnip As Variant Print IsObject(tomato) ' Output: False Set turnip = New Vegetable Print IsObject(turnip) ' Output: True Set tomato = New Fruit Print IsObject(tomato) ' Output: True
See Also