setting variables to false
I am working in flex and I am just setting a variable to false. It doesnt do anything in the program but开发者_如何学JAVA everything breaks when I put this line of code in:
somevar = false;
Does anyone know why?
is somevar declared as a Boolean?
var somevar:Boolean;
精彩评论