Where is this thread going ?
As I understand it, global variables are initialized as zero (or false, or nil). Khrys showed us where in the docs this is declared. So, the 'real globals' that Mark frowns upon, the public variable in an instance of a class, even the private variable in a class are all initialized when an instance is made.
Local variables are not so initialized, so, if you want them initialized, do so when declaring them.
fxeconomist, if your booleans are class data, yes, they will be initialized as false. If they are local variables, in a function or procedure, just do -
var MyBool : boolean = false;
Destroying cars ?? Wot ? How about simple answers to simple questions please ?
Davo