i'm linked a MovieClip class object to my project, and i will programatically add it to the display list. is there a difference between defining the variable's data type and not doing so? neither produce a runtime error.
//var datatype
var rectangle:Block = new Block();
addChild(rectangle);
//no var datatype
var rectangle = new Block();
addChild(rectangle);