I have declared an integer variable testInt in shorthand notation as follows
Dim testInt%
Is there any difference between using
somevalue = testInt * testInt
versus
somevalue = testInt% * testInt%
In short, is there an advantage of using the type-specifier at every point the variable is referenced?